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))

5th Apr 2021, 6:59 AM
Eugene Israel
Eugene Israel - avatar
1 Answer
+ 3
You forgot to close the brackets on Line 10: print(math.e**10)
5th Apr 2021, 7:06 AM
Baspberry