Python String Example - Immutable


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