ways of printing a list in python code example
Example: how to print from a python list
list = ['a', 'b']
print(list[0])
#that will print 'a'
#print(list[1]) will print 'b'
list = ['a', 'b']
print(list[0])
#that will print 'a'
#print(list[1]) will print 'b'