I am not very good at Python
There are multiple ways to do it: you can add a \n like
\n
'
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")
How do I start a new line?
I am not very good at Python
There are multiple ways to do it:
@medcho said, or you can use the multipleyou can add a
\n
like'
thingy to write on different lines.Or you can just use the print statement: