Computer Science, asked by sritipandit1, 3 months ago

math.sqrt( math. pow ( 2.7, 2)​

Answers

Answered by harshvirsing55
0

Answer:

This program show error because before using math.sqrt function you need to import math.

The right Program is.

import math

a=math.sqrt( math.pow (2.7, 2))

print(a)

Output:-

2.7

Explanation:

math.sqrt( math. pow ( 2.7, 2) ​= \sqrt{2.7^{2} }

Similar questions