Find Square Root of Number | Solutions For Python 100 Exercises | Program3 | CodingFacts

preview_player
Показать описание

#python #pythonexercises #pythonexercisessolutions #python100exercies #program3solution #howtoprinthelloworldinpython #pythonpractice
Рекомендации по теме
Комментарии
Автор

#Program Sqare Root
number = float(input('Enter a number to find the square root: '))
sqreroot = number ** 0.5
print('The square root of ' + str(number) + ' is ' + str(sqreroot))

This was my solution it works the same, but would this still work?

jahiemward