w3resource

Python Challenges: Check if a number is a power of a given base

Python Challenges - 1: Exercise-6 with Solution

Write a Python program to check if a number is a power of a given base.

Sample Solution:

Python Code:

import math

def isPower (n, base):
    if base == 1 and n != 1:
        return False
    if base == 1 and n == 1:
        return True
    if base == 0 and n != 1:
        return False
    power = int (math.log(n, base) + 0.5)
    return base ** power == n

print(isPower(127,2))
print(isPower(128,2))

print(isPower(27,2))
print(isPower (27,3))
print(isPower (28,3))
print(isPower (2**10,2))
print(isPower (2**12,2))

print(isPower(2,2))
print(isPower(5,5))
print(isPower(10,1))

Sample Output:

False                                                                                                         
True                                                                                                          
False                                                                                                         
True                                                                                                          
False                                                                                                         
True                                                                                                          
True                                                                                                          
True                                                                                                          
True                                                                                                          
False 

Flowchart:

Python Flowchart: Check if a number is a power of a given base

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to check if an integer is the power of another integer.
Next: Write a Python program to find a missing number from a list.

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.