#pythonforbeginners #tutorialsupport #pythontutorial
This tutorial will get you introduced to the very basics on how to create a list and iterate through the elements. This will enable you to move to the projects wherein we will need to use Lists.
0:00 - Introduction to need for a collection of items
1:06 - Python supports multiple Sequences Data Type - List is one of them
1:27 - List is defined using square brackets []
2:00 - List be initialised with elements, separated by commas
2:37 - len() is a built-in function to get the length of the List
3:01 - Using print using multiple arguments
3:47 - Iterating through a list
4:11 - Using “for” loop to Iterate the list
6:30 - Pause and do the Code yourself
6:38 - Run and Test your Code