53.2k views
20 votes
Your one output statement should occupy two lines in your program

User Idkt
by
4.1k points

1 Answer

3 votes

Answer:Use \\ in your print function after text to keep writing in the next line

Step-by-step explanation:

For example,

print("first line \\ second line")

output would be:

first line

second line

User Konkked
by
4.4k points