Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Collections (2016, retired 2019) Dungeon Game Line endings

mapping.py - not sure why this code is not passing the challenge

I don't get it. As far as I can tell - this code should loop through and do what is asked for in the challenge - but it is not passing. I know I am missing something, but I can not figure out what it is.

mapping.py
TILES = ('-', ' ', '-', ' ', '-', '||',
         '_', '|', '_', '|', '_', '|', '||',
         '&', ' ', '_', ' ', '||',
         ' ', ' ', ' ', '^', ' ', '||'
)


for tile in TILES:
    if tile != "||":
        print(tile, end="")
    else:
        print(end="")

I finally passed with this code:

for tile in TILES:
    if tile == '||':
        print()
    else:
        print(tile, end="")

1 Answer

Steven Parker
Steven Parker
229,657 Points

That print statement that had no contents but set "end" to an empty string became a no-op (a "do nothing").

But the print statement with no contents at all still puts out a blank line.

Thanks for the input. I appreciate your time, Steven.