Slicing of a List in Python
A list in Python is collection of values of any type such as integer, float, string or a complex number in a square bracket separated by comma. For example If you can create a list l as follows l=[50, “Post”, “Network”, 50.3, 80, 100, 150, 180, 200, 300] In the above list you can see […]
Slicing of a List in Python Read More »