Slicing Strings

 it is start from 0 to unlimited

name = "yash"
print(name[2:4])

name = "yash"
print(name[3])