LIST IN PYTHON
Hey Shouters!! Today we learn about all the important functions on lists in python. In this tutorial, we will learn about all the important things about the Lists. The main parts that we will learn about are: Definition of List String and list similarities Declaration and Initialization Slice and Index Operations Over List Going through a List Update a List Nested List Some Examples Of List Methods Add Elements to a List Deleting an Item From a List All important functions Definition of Lists in Python- The list is an abstract datatype. In Python, A-class ‘list’ is present with multiple methods. The list is a build-in mutable sequence. The list does not follow FIFO or LIFO techniques. Insertion and deletion can take in any position. Similarities between STRINGS AND LISTS- Strings are basically a sequence of characters. Similarly, Lists are basically a sequence of values. These values are Mutable values. That means We can update those values in our progr