Is there a way to declare a constant in Python? In Java we can create constant values in this manner:
public static
Here's a trick if you want constants and don't care their values:
Just define empty classes.
e.g:
class RED: pass class BLUE: pass