Example & Tutorial understanding programming in easy ways.

Is String Mutable or Immutable in Python ?

Hence:

String is immutable data type.

Because:

s="Mystring"

s[3]="D"

then this kind of operation is not supported in string means we can not change the content of the string at run time.

Read More →