Python Challenges: Check if a given positive integer is a power of two
Write a Python program to check if a given positive integer is a power of two.
Explanation:
Sample Solution:
Python Code:
def is_Power_of_two(n):
return n > 0 and (n & (n - 1)) == 0
print(is_Power_of_two(4))
print(is_Power_of_two(36))
print(is_Power_of_two(16))
Sample Output:
True False True
Flowchart:
Python Code Editor:
Contribute your code and comments through Disqus.
Previous: Python Challenges Exercises Home.
Next: Write a Python program to check if a given positive integer is a power of three.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics