Creating constant in Python
- by zfranciscus
Hi,
Is there a way to declare a constant in Python. In java I will we can create constant in this manner:
public static final String CONST_NAME = "Name";
What is the equivalent of the above java constant declaration in python ?
Cheers,