Answers for "How to print list without for loop python"

0

How to print list without for loop python

list = ['a','b','c']
print(', '.join(list) # You can also delete the comma and just put space or you can use \n to make new line
Posted by: Guest on September-03-2021

Code answers related to "How to print list without for loop python"

Python Answers by Framework

Browse Popular Code Answers by Language