1. tuples.py
#Tuples are just like lists, but read only (aka immutable): myList = [43, 45, 49, 52, 55] myList.append(58) myTuple = tuple(myList) print(myTuple) #myTuple.append(59) #big error
mixed = ("word", ["a", "b", "c"], (1, 2, 3), -4, 0.5, True)
print(mixed[2][1])
. access the character list in the previous example to print "a"