I'm studying about Python using pyDev and realized that when I have an Enum
and want to use a value of it, pyDev does not suggest which value to use. For example:
weapon = Enum("Weapon", "sword hammer axe")
print(weapon.sword)
it does not suggest sword
after weapon.
, and neither other values. What should I do?
Thank you for your answers. I found what I wanted in enum documentation. Having a AutoNumber class that extends Enum and numerates automatically overriding new().