Alternative Imports import math as m discRt = m.sqrt(b * b - 4 * a * c) from math import sqrt discRt = sqrt(b * b - 4 * a * c) from math import * y = sqrt(sin(x)) from math import sqrt as squareRoot y = squareRoot(x)