How do I solve this question? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I solve this question?

y = (\sqrt{9}*8)**2 print(y)

17th Mar 2020, 10:31 PM
Olabode Olusegun Ajayi
4 Answers
0
It's a basic mathematical operation assignment
17th Mar 2020, 10:31 PM
Olabode Olusegun Ajayi
0
Its given me this error File '"<ipython-input-18-ab67b2091b00>"" line1 y = (\sqrt{9}*8)**2 SyntaxError: unexpected character after line continuation character
17th Mar 2020, 10:35 PM
Olabode Olusegun Ajayi
0
import math y = (math.sqrt(9)*8)**2 print(y)
18th Mar 2020, 8:08 AM
Jayakrishna 🇮🇳
0
Thanks I will do just that
18th Mar 2020, 8:50 AM
Olabode Olusegun Ajayi