Change
from math import *
to
import math
Using from X import * is generally not a good idea as it uncontrollably pollutes the global namespace and could present other difficulties.
Change
from math import *
to
import math
Using from X import * is generally not a good idea as it uncontrollably pollutes the global namespace and could present other difficulties.