“Программа Python, чтобы найти корень SQAURE из числа” Ответ

Как найти квадратный корень числа, используя Python

import math
whose_square = int(input("Of which number to find square root:- "))
print("The square root of ", whose_square,"is",math.sqrt(whose_square))
Programmer of empires

Программа Python, чтобы найти корень SQAURE из числа

# python program to find the square root of the number
num = int(input("enter a number:"))

num_sqrt = num ** 0.5
print("the sqare root of {0} is {1}".format(num, num_sqrt))
Enchanting Eel

Ответы похожие на “Программа Python, чтобы найти корень SQAURE из числа”

Вопросы похожие на “Программа Python, чтобы найти корень SQAURE из числа”

Смотреть популярные ответы по языку

Смотреть другие языки программирования