Answers for "how to make python print 2 line text in one code"

1

how to print in one line python

# Python program to print list
# using for loop
a = [1, 2, 3, 4, 5]
  
# printing the list using loop
for x in range(len(a)):
    print(a[x], end = " ")
Posted by: Guest on June-21-2021
0

how to make python print 2 line text in one code

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

Code answers related to "how to make python print 2 line text in one code"

Python Answers by Framework

Browse Popular Code Answers by Language