+ 2
How to use muptiple print statements in Python 3
There is often more than 1 solution to a single problem Using multiple print statements also has more than one solution one way is to use use print statement 2 times print ("Hickory Dickory Dock") print ("Hello") other way is to use triple commas it presents the information exactly the same way it is typed in both single and double commas can be used here I have used double commas but you can use single commas also print ("""Hickory Dickory Dock Hello""")
1 Answer
+ 3
print("another", "way", sep="\n")