edit LOGIN

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

  1. Strings = immutable (can be used as dict key)
  2. Lists = mutable
  3. Tuples = immutable (can be used as dict key)
  4. Dictionaries = mutable
  5. Set = elements are immutable
  6. Numbers = immutable (can be used as dict key)
  7. Booleans = immutable (can be used as dict key)