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

Help on Python Dungeon Game challenge

Trying to do one of the code challenges where if it's a double pipe, I just print out a new line and not the character itself. I set my code up like this. I'm not sure why it's not working

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

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

1 Answer

I copyed-and-pasted your code into the challenge, and it worked. Perhaps you need to refresh the page?