Python String Slicing Example


Program
a = "Welcome to Fresherbell" print(a[0]) print(a[11:])
Input
Output