Answers for "how to print as a list in python"

3

python print list as string

list1 = ['1', '2', '3']
str1 = ''.join(list1)
Posted by: Guest on May-11-2020
1

how to print from a python list

list = ['a', 'b']
print(list[0])
#that will print 'a'
#print(list[1]) will print 'b'
Posted by: Guest on July-22-2020

Code answers related to "how to print as a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language