Python OOP notes -- for Google AI Automation with Python course on Coursera.
Dunder Method: methods that start and end with Double Underscores like __init__
Python misc notes
- Strings = immutable (can be used as dict key)
- Lists = mutable
- Tuples = immutable (can be used as dict key)
- Dictionaries = mutable
- Set = elements are immutable
- Numbers = immutable (can be used as dict key)
- Booleans = immutable (can be used as dict key)