Quick actions

cmd+k|ctrl+k

Navigation

Languages

ZtM_Sec3Vid37_Immutability

Snippet info

Language

Python

Visibility

public

Author

orrherm

Created

2025-04-09T20:43:38.402027Z

Updated

2025-04-09T20:43:38.402027Z

#immutable = cannot be changed
#Strings in python are inheritbly immutable. That doesn't mean you cant OVERwrite them, you can. But you can't, for example, change one indexed value
#in a string once it's created.

var = '12345678'

var = var + '15'

print(var)
INFO