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 trialTyler Wells
Python Development Techdegree Student 2,678 PointsWhats the purpose of the final line in the function: blank print()
Hi everyone, just wondering what exactly is the purpose of the final line within the function - the blank print? It comes right after the for in loop
Thanks
1 Answer
Steven Parker
231,248 PointsA "print()
" with no arguments will just cause the output to go to the next line.
Tyler Wells
Python Development Techdegree Student 2,678 PointsTyler Wells
Python Development Techdegree Student 2,678 PointsHi Steven, thanks for the help. But why would we write that line then?
Steven Parker
231,248 PointsSteven Parker
231,248 PointsThat way, all the lines showing items in the list are together, but there will be a blank line after them to separate them from whatever gets printed next.