Python- How to Print Multiple lines of text - Passionate Geekz

Breaking

Where you can unleash your inner geek.

Saturday, 22 June 2019

Python- How to Print Multiple lines of text

 

#Author : Paras Guglani
#Website : Passionategeekz.com
#created : 22/06/2019 15:14pm

Here is the code to print multiple lines

print(“hello”)
print (‘world’)
print (“this is “)
print (“example to “)
print(“print multiple lines in python “)

Output

hello
world
this is
example to
print multiple lines in python
[Finished in 0.1s]
 

 

No comments:

Post a Comment