The fourth root

Report a typo

Write a program that prints the fourth root from a given real number.

The square root function is located in the math module. Try to find and apply it.

Do not round the result.

Sample Input 1:

16.0

Sample Output 1:

2.0
Write a program in Python 3
# put your python code here
___

Create a free account to access the full topic