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 trialjimvichos
4,700 PointsLine-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!
TILES = ('-', ' ', '-', ' ', '-', '||',
'_', '|', '_', '|', '_', '|', '||',
'&', ' ', '_', ' ', '||',
' ', ' ', ' ', '^', ' ', '||'
)
for tile in TILES:
x = tile
if x != '||':
print(x, end=' ')
else:
print(end='\n')
1 Answer
John Lack-Wilson
8,181 PointsHi 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
4,700 Pointsjimvichos
4,700 PointsI fixed it but thanks for the help it was what you said and im really happy i found it!