Quick actions

cmd+k|ctrl+k

Navigation

Languages

IMMUTABILITY 

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-24T13:11:58.328875Z

Updated

2026-06-24T13:11:58.328875Z

#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