0
How do I solve this question?
y = (\sqrt{9}*8)**2 print(y)
4 Antworten
0
It's a basic mathematical operation assignment
0
Its given me this error
File '"<ipython-input-18-ab67b2091b00>"" line1
y = (\sqrt{9}*8)**2
SyntaxError: unexpected character after line continuation character
0
import math
y = (math.sqrt(9)*8)**2
print(y)
0
Thanks I will do just that