This video is a continuation of the python programming series. In this video I introduce the concept of data structures in python. This video's focus is on lists and the different list methods that can be used to add, remove, and modify data in python lists.
Patreon: / dcodetech
List Methods covered in this video:
For adding to list:
.insert()
.append()
.extend()
.insert()
For deleting from a list:
.remove()
.pop()
For finding things in list:
.index()
For sorting a list:
.sort()
.reverse()
python3.7 is used in this series