python-by-example-150-chall.../challenges27-34/challenge-029.py

5 lines
128 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
import math
number = int(input('Enter number over 500 : '))
2025-05-26 06:49:34 +08:00
#print(round(math.sqrt(number)))
print(round(math.sqrt(number), 2))