Answers for "wap to find a number is perfect cube in 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 "wap to find a number is perfect cube in python"

Python Answers by Framework

Browse Popular Code Answers by Language