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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/challenges/1/python-challenges-1-exercise-2.php