Receiving unexpected syntax error in absolute value calculator

177 Views Asked by At

Code:

print ("Welcome to my Calculator")
print ("Calculators: Absolute Value [av]")

load = int(input("Enter the calculator code here: "))

if load == av:

 import cmath

 import math

 avnum2 = int(input("Enter the number to have it's absolute value found: ")

 **avsol** = cmath.fabs (avnum2)

 print ("The solution (absolute value) is: ", avsol)

There is a syntax error on avsol, and yes, I imported cmath.

1

There are 1 best solutions below

0
On BEST ANSWER
avnum2 = int(input("Enter the number to have it's absolute value found: ")
                                                                          ^

You're missing a closing ) on this line.