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

victor E
victor E
19,145 Points

close but not quite

my else statement is wrong but im drawing a blank here

mapping.py
TILES = ('-', ' ', '-', ' ', '-', '||',
         '_', '|', '_', '|', '_', '|', '||',
         '&', ' ', '_', ' ', '||',
         ' ', ' ', ' ', '^', ' ', '||'
)
for item in TILES:
    if item != '||':
        print (item)
    else:
        TILES= '\n'.join(TILES)

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Every print statement has an implied \n appended. So the challenge is actually asking is to print any non-|| item without a \n (this can be done with the end argument), and to print a new line if the item is ||. For the second condition, both print() and print('\n') will work.

Post back if you have more questions. Good luck!!

victor E
victor E
19,145 Points

This one works on my idle, but its not accepted for the challenge

for item in TILES:
    if item != '||':
        print (item, end = ' ')
    else:
        print(end = '\n')
victor E
victor E
19,145 Points

i had an extra space on my end statement. thats why it wasnt working but i got it figured out. Thank you!

victor E
victor E
19,145 Points
for item in TILES:
    if item != '||':
        print (item, end = ' ')
    else:
        print(end = '\n')

this one works on my idle, what do you think? Chris Freeman