Answers for "how to print list without newline"

0

how to print list without newline

list = ['a','b','c']
for i in list:
  print(i, end=' ')
Posted by: Guest on September-03-2021

Code answers related to "how to print list without newline"

Python Answers by Framework

Browse Popular Code Answers by Language