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 trial

Python Introducing Lists Using Lists Mutability

Whats 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
Steven Parker
229,644 Points

A "print()" with no arguments will just cause the output to go to the next line.

Hi Steven, thanks for the help. But why would we write that line then?

Steven Parker
Steven Parker
229,644 Points

That 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.