Slicing Lists

 As Strings we can also slice lists:

It's also start from 0 to unlimited
myFruit = ["Apple", "Cherry", "Watermelon"]
if you want to print cherry
you will not write 2
cuz it starts from 0
0 = Apple
1 = Cherry
2 = Watermelon
let's print cherry 
print(myfruit[2])
now if u want to print cherry and watermelon:
print(myfruit[1:2])
if we want to change a num from list:
lst = [31,4,5,6,61]
lst[2] = 10
print(lst)