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 trialJennifer Lithgow
11,778 Pointsline-endings aka mapping.py - what is wrong?
I don't know what I'm missing with this one. . . I feel like I've done what was asked, and when I run my code in IDLE, it looks the way I think it's supposed to, but I can't get it to pass the test. What am I missing?
TILES = ('-', ' ', '-', ' ', '-', '||',
'_', '|', '_', '|', '_', '|', '||',
'&', ' ', '_', ' ', '||',
' ', ' ', ' ', '^', ' ', '||'
)
for i in TILES:
if i == "||":
line_end = "\n"
#print(i, end=line_end)
else:
line_end = ""
#print(i, end=line_end)
print(i, end=line_end)
2 Answers
Christian Mangeng
15,970 PointsHi Jennifer,
if the tile is a double pipe you shouldn't print it, but print a new line only.
Happy coding
Alexander Davison
65,469 PointsIf i
is the double pipes, you should not print i
, and should only print a newline.