How to check whether a number is perfect cube root in Python

1 Answer

0 votes
# The cube root is a whole number. For example, 27 is a perfect cube, as ∛27 or (27)**1/3 = 3

def is_perfect_cube_root(x):
    x = abs(x)
    return int(round(x ** (1 / 3))) ** 3 == x
 
print(is_perfect_cube_root(16))
print(is_perfect_cube_root(64))
print(is_perfect_cube_root(27))
print(is_perfect_cube_root(25))
print(is_perfect_cube_root(-64))
print(is_perfect_cube_root(-27))
print(is_perfect_cube_root(729)) 
  
  
  
'''
run:
  
False
True
True
False
True
True
True
   
'''

 



answered Aug 5, 2020 by avibootz
edited Sep 1, 2024 by avibootz

Related questions

1 answer 130 views
1 answer 139 views
1 answer 169 views
1 answer 193 views
1 answer 190 views
1 answer 131 views
...