Horje
how to get cube root python Code Example
how to get cube root python
# Check if the Square root of the First number is Equal to the Cube root of the Second number
import math
global x
global y
def check_square_and_cube(x, y):
  sq_rt_x=math.sqrt(x)
  cb_rt_y=(y**(1/3))
  if sq_rt_x==cb_rt_y:
    return True
  else :
    return False

check_square_and_cube(9, 27)




Python

Related
python tkinter importieren Code Example python tkinter importieren Code Example
fibbonachi python Code Example fibbonachi python Code Example
python messaging networking Code Example python messaging networking Code Example
program to demonstrate encapsulation in python Code Example program to demonstrate encapsulation in python Code Example
Use Python to calculate (((1+2)*3)/4)^5 Code Example Use Python to calculate (((1+2)*3)/4)^5 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8