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

jimvichos
jimvichos
4,700 Points

Line-Endings Problem

I don't know what is the problem because when i run it on my IDE works fine prints everything except the '||' and puts a \n line anyone who knows something please comment! thanks for your time!

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

for tile in TILES:
    x = tile

    if x != '||':
        print(x, end=' ')
    else:
        print(end='\n')

1 Answer

John Lack-Wilson
John Lack-Wilson
8,181 Points

Hi Jim, thanks for the question. I believe this may be because you’ve put a space in between the end argument. Remove that and try again.

Also as a tip, there’s no need to use x as a variable here, you can actually just compare tile with any string. It would just make the code more concise.

jimvichos
jimvichos
4,700 Points

I fixed it but thanks for the help it was what you said and im really happy i found it!