Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

jimvichos
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!