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 trialGilang Ilhami
12,045 PointsLine Endings Challenge won't pass
When i try it on terminal it gave me this result
- - -
_|_|_|
& _
^
But it still won't pass
TILES = ('-', ' ', '-', ' ', '-', '||',
'_', '|', '_', '|', '_', '|', '||',
'&', ' ', '_', ' ', '||',
' ', ' ', ' ', '^', ' ', '||'
)
for tile in TILES:
if tile == "||":
print("\n)
else:
line_end = ""
print(tile, end=line_end)
1 Answer
Steven Parker
231,264 PointsI see two issues:
First, you forgot to close the quotes around "\n". But since print gives you a new line by default, you probably don't want to print one explicitly unless you also override "end" or you would get an extra blank line. But without going to that trouble, you could just print an empty string (""
).
Gilang Ilhami
12,045 PointsGilang Ilhami
12,045 PointsThank you very much! Works like a charm :)