How do I start a new line?
I am not very good at Python
jonross321
Use \n in a string to make a new line, or use triple quotations '''Place string here.''' to have multiple lines. If you are using text-based gaming like RPG, then I recommend the \n, but if you want to include ASCII art (making pictures out to many letters, symbols, numbers, and others) then use the triple quotes.
bobninja
just press enter
18WoodO
all you need to do if it is text is put the following in speech marks: \n
otherwise outside of this press enter
hope this helps
Kopamed
There are multiple ways to do it:
you can add a \n
like
'
thingy to write on different lines.
print('''This will be printed on multiple lines''')
Or you can just use the print statement:
print("hello") print("New line") print() print("skipped a line")
Use
\n
for a new line