Answers for "Create a function that takes a list of two numbers and checks if the square root of first number is equal to the cube root of second number."

19

python square root

import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
Posted by: Guest on July-09-2020
9

square root in python

def square_root(num):
  	return num**0.5
#prints out 4
print(square_root(16))
#prints out 10
print(square_root(100))
Posted by: Guest on August-21-2020

Code answers related to "Create a function that takes a list of two numbers and checks if the square root of first number is equal to the cube root of second number."

Python Answers by Framework

Browse Popular Code Answers by Language