Learn about how you can create simple lists using Python's square bracket notation. Lists are mutable data structure in Python to include data of different types. Each element in a list are indexed by its index and we can access them using these indices. In this video, we see square bracket notation and list() function to create list using from iterable objects. Then, we go on to list indexing operations, how we can retrieve each element from the list and list slicing like we did with...