w3resource

Python Challenges: Check if a given positive integer is a power of three

Python Challenges - 1: Exercise-2 with Solution

Write a Python program to check if a given positive integer is a power of three.

Explanation:

Python: A positive integer is a power of 3

Sample Solution:

Python Code:

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))

Sample Output:

True                                                                                                          
True                                                                                                          
False

Flowchart:

Python Flowchart: Check if a given positive integer is a power of three

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to check if a given positive integer is a power of two.
Next: Write a Python program to check if a given positive integer is a power of four.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.