Is there a way to declare a constant in Python. In Java 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?
|
Is there a way to declare a constant in Python. In Java we can create constant in this manner:
What is the equivalent of the above java constant declaration in Python? |
||||
|
|
|
No there is not. You cannot declare a variable or value as constant in Python. Just don't change it. If you are in a class, the equivalent would be:
if not, it is just
But you might want to have a look at the code snippet Constants in Python by Alex Martelli. |
|||||||||||||||||
|
|
There's no Here is an alternative implementation using class property: Note that the code is far from easy for a reader wondering about constants. See explanation below
Code Explanation:
And in some other more old-fashioned way: (The code is quite tricky, more explanations below)
Note that the @apply decorator seems to deprecated.
|
|||||
|
|
In python usually instead of language enforcing something, people use naming conventions e.g __method for private and using _method for protected methods i.e. generally not used from outside of class but derived class may override it. So in same manner you can simply declare the constant as all caps e.g.
If you want that this constant never changes, you can hook into attribute access and do tricks, but IMO a simpler approach is to declare a function
Only problem is everywhere you will have to do MY_CONSTANT(), but again You can also use namedtuple to create constants
|
||||
|
|
|
Python dictionaries are mutable, so they don't seem like a good way to declare constants:
|
|||
|
|
|
The Pythonic way of declaring "constants" is basically a module level variable:
And then write your classes or functions. Since constants are almost always integers, and they are also immutable in Python, you have a very little chance of altering it. Unless, of course, if you explicitly set |
|||
|
|
|
I would make a class that overrides the
To wrap a string:
It's pretty simple, but if you want to use your constants the same as you would a non-constant object (without using constObj.value), it will be a bit more intensive. It's possible that this could cause problems, so it might be best to keep the |
|||
|
|
|
A python dictionary is unchangeable once declared and can serve as constants.
|
|||