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 Python Basics (Retired) Shopping List Shopping List Project

Naivedya Bansal
Naivedya Bansal
5,483 Points

does the print function by default prints every new string on a newline?

In other programming languages that i have worked with, we specify when the cursor should move to a newline by a \n character. What's the python equivalent to that? In the video it is printing every list item automatically on a new line. That is a bit confusing .

1 Answer

By default print appends a '\n' to the end of every line. You can change this by using the end= option. Here is the python documentation for more details