Tuesday, January 14, 2020

Abhijeet Pal: Python Program to Calculate Power of a Number

Problem Definition Create a Python program to take two numbers from the user one being the base number another the exponent then calculate the power. Program import math base_number = float(input("Enter the base number")) exponent = float(input("Enter the exponent")) power = math.pow(base_number,exponent) print("Power is =",power) Output Enter the base number2 Enter the exponent4 Power is = 16.0 The built-in math module provides a number of functions for mathematical operations. The pow() method takes a base number and exponent as parameters and returns the power. Since in Python, there is always more than one way of achieving things calculating power with the exponentiation operator is also possible. The exponentiation operator x**yevaluates to power. Program base_number = int(input("Enter the base number")) exponent = int(input("Enter the exponent")) power = base_number ** exponent print("Result is =",power) Output Enter the base number2 Enter the exponent5 Result is = 32

The post Python Program to Calculate Power of a Number appeared first on Django Central.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...