+ 1
Hola buenas, Âżhalguien me podrĂa ayudar con este ejercicio. Muchas gracias. Introduce un nĂșmero entero, y calcula su raĂz cuarta
Introduce un numero entero y calcula la raiz cuarta(raiz cuadrada de la raiz cuadrada).Muchas gracias por su tiempo
3 Answers
+ 1
import math
num = input("Enter a number: ")
if num.count(".") == 0: #### Check if the entered number is a whole number
num = int(num) #### Convert the number to an int
print("Fourth root of " + str(num) +": "+str(math.sqrt(math.sqrt(num))))
else:
print("Please enter a whole number and try again!")
+ 2
Thanks.friend
+ 1
Kevion2000 Kevion Always glad to help!
đ