Skip to content

Instantly share code, notes, and snippets.

@rongpenl
Created May 22, 2023 22:25
Show Gist options
  • Save rongpenl/a1a7f2782cc44d84cd615b02ad08a253 to your computer and use it in GitHub Desktop.
Save rongpenl/a1a7f2782cc44d84cd615b02ad08a253 to your computer and use it in GitHub Desktop.
"""
hollyandprosper.com
YouTube Channel: https://www.youtube.com/@hollyandprosper
Link to the original YouTube Short: https://youtu.be/rnAl4Rk5bu8
"""
from immutabledict import immutabledict
immu_dict_a = immutabledict({
'alpha': 1,
'beta': 2
})
immu_dict_a['gamma'] = 3
# an error will be thrown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment