Tipe konstruk khusus untuk menandai variabel kelas.
typing.ClassVar
class Starship:
stats: ClassVar[dict[str, int]] = {} class variable
damage: int = 10 instance variable
enterprise_d = Starship(3000)
enterprise_d.stats = {} Error, setting class variable on instance
Starship.stats = {} This is OK