python check if a number is a perfect square code example
Example: check if a number is perfect cube in python
x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)
x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)