fork download
  1. # number
  2. num = 217000
  3.  
  4. # calculate the cube root
  5. cube_root = num ** (1/3)
  6.  
  7. # print the result
  8. print(cube_root)
Success #stdin #stdout 0.02s 7176KB
stdin
Standard input is empty
stdout
1