Python Baby Steps 104
Jun 1, 2021
We are going to take a look at lists in Python. Mind it — “Important difference between tuples and Lists is “mutability” feature”. List is one of the data type which is modifiable.
A list is a sequenced collection of different objects such as integers, strings, and other lists as well. The address of each element within a list is called an index. An index is used to access and refer to items within a list.
Let’s get our hands dirty.
head to mihirdhakan93/python-babysteps: Repo for the python baby steps with practical hands-on (github.com) to get this notebook on your local system.
Thank You !