Lists
I have learnt these things about list: Lists are also sequence data types as strings but it can store heterogeneous data. list are also zero index based . List can be traversed using for loop . Lists are mutable unlike strings. Any operations made on lists , modifies it in place. Slicing can also be performed same as strings The plus operator concatenates two lists and comparison operators compares two lists element by element same as strings. Various built in methods of lists such as len,count,sort,append,extend etc are there. split method splits string into list and join method return a string of elements of list. Got to know about aliasing and many more.