Überprüfen Sie, ob eine Nummer in Python perfekter Würfel ist
x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)
Strange Seal
x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)