Answers for "how to know a given number is a perfect cube python"

2

check if a number is perfect cube in python

x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)
Posted by: Guest on August-24-2020

Code answers related to "how to know a given number is a perfect cube python"

Python Answers by Framework

Browse Popular Code Answers by Language