1>>> mylist = [1,2,3] #list
2>>> len(mylist)
33
4>>> word = 'hello' # string
5>>> len(word)
65
7>>> vals = {'a':1,'b':2} #dictionary
8>>> len(vals)
92
10>>> tup = (4,5,6) # tuple
11>>> len(tup)
123
1# List of strings
2listOfElems = ['Hello', 'Ok', 'is', 'Ok', 'test', 'this', 'is', 'a', 'test']
3len(s)