Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 87 down vote accepted

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:

class Foo(object):
    CONST_NAME = "Name"

if not, it is just

CONST_NAME = "Name"

But you might want to have a look at the code snippet Constants in Python by Alex Martelli.

share|improve this answer
Thanks Felix. This has been very helpful =) – zfranciscus Apr 21 '10 at 21:28
3  
Rather then do what is in "Constants in Python," you should use the "property" function or decorator. – Seth Johnson Apr 21 '10 at 21:30
1  
@Felix Kling hello there. I tried the example in 'Constants in Python' but it doest seem to work for me... I get error when i run it: Traceback (most recent call last): File "E:\Workspaces\Python\Const_in_python\test.py", line 4, in <module> const.magic = 23 File "E:\Workspaces\Python\Const_in_python\const.py", line 5, in __setattr__ if self.__dict__.has_key(name): AttributeError: 'dict' object has no attribute 'has_key' I am sure i havent done anything wrong. – Geo Papas Oct 2 '12 at 12:40
1  
People ask about the same feature in Perl. There is an import module called "use constant", but (AFAIK) is it just a wrapper to create a tiny function that returns the value. I do the same in Python. Example: def MY_CONST_VALUE(): return 123 – kevinarpe Dec 17 '12 at 5:39
If you try to declare a constant the way is showed in this answer, it's important to notice that, inside a method, the value should be accessed with "self.CONST_NAME". – Saul Berardo Apr 30 at 16:16

There's no const keyword as in other languages, however it is possible to create a Property that has a "getter function" to read the data, but no "setter function" to re-write the data. This essentially protects the identifier from being changed.

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

def constant(f):
    def fset(self, value):
        raise SyntaxError
    def fget(self):
        return f()
    return property(fget, fset)

class _Const(object):
    @constant
    def FOO():
        return 0xBAADFACE
    @constant
    def BAR():
        return 0xDEADBEEF

CONST = _Const()

print CONST.FOO
##3131964110

CONST.FOO = 0
##Traceback (most recent call last):
##    ...
##    CONST.FOO = 0
##SyntaxError: None

Code Explanation:

  1. Define a function constant that takes an expression, and uses it to construct a "getter" - a function that solely returns the value of the expression.
  2. The setter function raises a SyntaxError so it's read-only
  3. Use the constant function we just created as a decoration to quickly define read-only properties.

And in some other more old-fashioned way:

(The code is quite tricky, more explanations below)

class _Const(object):
    @apply
    def FOO():
        def fset(self, value):
            raise SyntaxError
        def fget(self):
            return 0xBAADFACE
        return property(**locals())

CONST = _Const()

print CONST.FOO
##3131964110

CONST.FOO = 0
##Traceback (most recent call last):
##    ...
##    CONST.FOO = 0
##SyntaxError: None

Note that the @apply decorator seems to deprecated.

  1. To define the identifier FOO, firs define two functions (fset, fget - the names are at my choice).
  2. Then use the built-in property function to construct an object that can be "set" or "get".
  3. Note hat the property function's first two parameters are named fset and fget.
  4. Use the fact that we chose these very names for our own getter & setter and create a keyword-dictionary using the ** (double asterisk) applied to all the local definitions of that scope to pass parameters to the property function
share|improve this answer
5  
Why this answer is been downvoted without explanations? While code isn't the clearest-on-the-earth, it's intended to demonstrate the idea of using getter-only properties for constants, which does not look as an insane idea. – Ilia K. May 10 '11 at 5:59

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.

MY_CONSTANT = "one"

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

def MY_CONSTANT():
    return "one"

Only problem is everywhere you will have to do MY_CONSTANT(), but again MY_CONSTANT = "one" is the correct way in python(usually).

You can also use namedtuple to create constants

>>> from collections import namedtuple
>>> Constants = namedtuple('Point', ['pi', 'e'])
>>> constants = Constants(3.14, 2.718)
>>> constants.pi
3.14
>>> constants.pi = 3
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: can't set attribute
share|improve this answer

Python dictionaries are mutable, so they don't seem like a good way to declare constants:

>>> constants = {"foo":1, "bar":2}
>>> print constants
{'foo': 1, 'bar': 2}
>>> constants["bar"] = 3
>>> print constants
{'foo': 1, 'bar': 3}
share|improve this answer

The Pythonic way of declaring "constants" is basically a module level variable:

RED = 1
GREEN = 2
BLUE = 3

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 RED = 2.

share|improve this answer

I would make a class that overrides the __setattr__ method of the base object class and wrap my constants with that, note that I'm using python 2.7:

class const(object):
    def __init__(self, val):
        super(const, self).__setattr__("value", val)
    def __setattr__(self, name, val):
        raise ValueError("Trying to change a constant value", self)

To wrap a string:

>>> constObj = const("Try to change me")
>>> constObj.value
'Try to change me'
>>> constObj.value = "Changed"
Traceback (most recent call last):
   ...
ValueError: Trying to change a constant value
>>> constObj2 = const(" or not")
>>> mutableObj = constObj.value + constObj2.value
>>> mutableObj #just a string
'Try to change me or not'

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 .value to show and know that you are doing operations with constants (maybe not the most 'pythonic' way though).

share|improve this answer

A python dictionary is unchangeable once declared and can serve as constants.

my_consts={"TIMEOUT":300, "RETRIES":10, "STATE":"happy"}

i=301
if i > my_consts["TIMEOUT"]:
  print "I've just timed out. Sorry folks."
  print "I tried, many times, " + str(my_consts["RETRIES"]) + " in fact."
  print "But I am still feeling quite " + my_consts["STATE"]
share|improve this answer
2  
a frozenset is unchangeabel, a dict can be edited – ted Jul 16 '12 at 9:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.