1. Basic
list1 = ['math', 1, 2.3]
2. Accessing
list1 = ['math', 1, 2.3]list1[0]list1[1:2]
3. delete
list1 = ['math', 1, 2.3]del list1[0] #'math' will be deleted
4. Built-in function
cmp(list1, list2) #Compares elements of both lists.len(list) #Gives the total length of the list.max(list) #Returns item from the list with max value.min(list)list(seq) #Converts a tuple into list.list.append(obj) #Appends object obj to listlist.count(obj) #Returns count of how many times obj occurs in listlist.extend(seq) #Appends the contents of seq to listlist.index(obj) #Returns the lowest index in list that obj appearslist.insert(index, obj) #Inserts object obj into list at offset indexlist.pop(obj=list[-1]) #Removes and returns last object or obj from listlist.remove(obj) #Removes object obj from listlist.reverse() #Reverses objects of list in placelist.sort([func]) #Sorts objects of list, use compare func if given