I have the following enum defined: from enum import Enum class D(Enum): x = 1 y = 2 print(D.x) now the printed value ...
-
May 30, 2022
- 0 Comments