IMMUTABILITY
#this means that we cannot modify a string we can only overwrite it or completely destroy it
phone_no = '12345678'
#phone_no[2] = '4' #(this cannot be done as strings are immutable)
print(phone_no)
phone_no = '01234567'
print(phone_no)INFO