0
Why is the code below not working on my code playground?
import math print(math.e**2) print(math.exp(2)) import cmath print(cmath.e**2) print(cmath.exp(2)) import cmath print(math.e**10 print(math.exp(10)) print(cmath.exp(10))
1 Answer
+ 3
You forgot to close the brackets on Line 10: print(math.e**10)