I am trying to do some simple decimal math to practice with the Tkinter GUI, but for some reason I cannot import Decimal:
>>> from decimal import Decimal
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/decimal.py", line 139, in <module>
import math as _math
File "math.py", line 3, in <module>
from decimal import Decimal
ImportError: cannot import name Decimal
I am using Python 2.7.11 This is making me feel pretty stupid since it seems like a simple thing to do. Is Decimal not supported or am I doing this wrong?