How do I start a new line?
I am not very good at Python
bobninja (0)
just press enter
18WoodO (0)
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 (186)
There are multiple ways to do it:
you can add a \n
like @medcho said, or you can use the multiple '
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