You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
163 B
Python

def is_Power(x, y):
while (x%y == 0):
x = x / y
return x == 1
print(is_Power(16, 2))
print(is_Power(12, 2))
print(is_Power(81, 3))