I'm using Python 2.5.4 and trying to use the decimal module. When I use it in the interpreter, I don't have a problem. For example, this works:
>>> from decimal import *
>>> Decimal('1.2')+ Decimal('2.3')
Decimal("3.5")
But, when I put the following code:
from decimal import *
print Decimal('1.2')+Decimal('2.3')
in a separate file (called decimal.py) and run it as a module, the interpreter complains:
NameError: name 'Decimal' is not defined
I also tried putting this code in a separate file:
import decimal
print decimal.Decimal('1.2')+decimal.Decimal('2.3')
When I run it as a module, the interpreter says:
AttributeError: 'module' object has no attribute 'Decimal'
What's going on?
print sys.versionif you want to check. – David Zaslavsky Jun 26 '10 at 17:51decimal.pythat is being imported instead of Python's builtin one – gnibbler Jun 26 '10 at 17:56print dir(decimal)afterimport decimaland check what functions are exposed. – Douglas Leeder Jun 26 '10 at 18:16