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.

8 lines
203 B
Python

def is_Power_of_three(n):
while (n % 3 == 0):
n /= 3;
return n == 1;
print(is_Power_of_three(9))
print(is_Power_of_three(81))
print(is_Power_of_three(21))