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:
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 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.
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
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics