What I did Today
- Learnt how to define lists , List methods , Indexing , slicing and looping.
On what I learnt Today
- To define lists we use square brackets []
- Lists has several methods like: Append , pop ,copy , remove , sort
- Indexing = name of the list[index of the item in the list]
- Slicing = name of the list[start index : last index]
- Looping: The syntax
for indx , item in enumerate(name of list , start=1)
print("specify what you want to display.")
*Resources I used *
Python refresher series by Bonaventure Ogeto on Youtube
What's Next
Introduction to Dictionaries and Key value pairs.
Top comments (0)