Learning Day-06 & 07
** Next Hands-on Session will be on 04-July-2020 Stay Tuned.... Let's Learn Python # Day-06 & 07 Deep Dive into Python Lists Python Collections (Arrays) There are four collection data types in the Python programming language: List is a collection which is ordered and changeable. Allows duplicate members. Tuple is a collection which is ordered and unchangeable. Allows duplicate members. Set is a collection which is unordered and unindexed. No duplicate members. Dictionary is a collection which is unordered, changeable and indexed. No duplicate members. List A list is a collection which is ordered and changeable. In Python lists are written with square brackets. List Methods Python has a set of built-in methods that you can use on lists. Method Description append() Adds an element at the end of the list clear() Removes all the elements from the list copy() Returns a copy of the list count() Returns the number of elements with the specified value extend() Ad...