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 Decima
You called a file math.py, meaning it overrides the built-in math module and breaks everything that uses that module. Pick a different name, and the problem will go away.
math.py
math