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 trialJohn Davis
16,469 Pointsmapping.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.
TILES = ('-', ' ', '-', ' ', '-', '||',
'_', '|', '_', '|', '_', '|', '||',
'&', ' ', '_', ' ', '||',
' ', ' ', ' ', '^', ' ', '||'
)
for tile in TILES:
if tile != "||":
print(tile, end="")
else:
print(end="")
1 Answer
Steven Parker
231,236 PointsThat 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.
John Davis
16,469 PointsThanks for the input. I appreciate your time, Steven.
John Davis
16,469 PointsJohn Davis
16,469 PointsI finally passed with this code: