Answers for "python print function on a certain line"

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

Code answers related to "python print function on a certain line"

Python Answers by Framework

Browse Popular Code Answers by Language