Computer Science, asked by adarshme, 10 months ago

Rewrite the following code in python after removing alls
ein python after removing all syntax error(s).
Under correction done in the code.

s=103
p=s+(104,105)
import math
q=sqrt(p(-1))
print q


pls give the right answer​

Answers

Answered by chiefprashant
5

Answer:

#Python

Explanation:

from math import sqrt

s = 103

p = s + 104+ 105

q= sqrt(p)

print(q)

Similar questions