Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Constants in Python: Implementation and Best Practices
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Background: const vs var
- 3 Why / when to use constants const?
- 4 Benefits / Advantages of const
- 5 dataclasses' frozen param Frozen dataclasses
- 6 raise TypeError in __setattr__
- 7 python's design philosophy on const
- 8 typing.final / @final decorator
- 9 from typing import Final typecheck
- 10 summary including const into your python programming toolkit