Answers for "how to print 2 lines below pyto=hon?"

0

how to make python print 2 line text in one code

print("firstnsecond")
#or
print("""
line1
line2
line3
""")
#or
print("line1","line2",sep = "n")
Posted by: Guest on July-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language