Python: Power of a number in bases raises to the corresponding number
Python map: Exercise-4 with Solution
Write a Python program to create a list containing the power of said number in bases raised to the corresponding number in the index using Python map.
pow() is given to map two list objects, one for each base and index parameter.
Sample Solution:
Python Code :
bases_num = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
index = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print("Base numbers abd index: ")
print(bases_num)
print(index)
result = list(map(pow, bases_num, index))
print("\nPower of said number in bases raised to the corresponding number in the index:")
print(result)
Sample Output:
Base numbers abd index: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100] [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] Power of said number in bases raised to the corresponding number in the index: [10, 400, 27000, 2560000, 312500000, 46656000000, 8235430000000, 1677721600000000, 387420489000000000, 100000000000000000000]
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to listify the list of given strings individually using Python map.
Next: Write a Python program to square the elements of a list using map() function.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
Python: Tips of the Day
Clamps num within the inclusive range specified by the boundary values x and y:
Example:
def tips_clamp_num(num,x,y): return max(min(num, max(x, y)), min(x, y)) print(tips_clamp_num(2, 4, 6)) print(tips_clamp_num(1, -1, -6))
Output:
4 -1
- New Content published on w3resource:
- HTML-CSS Practical: Exercises, Practice, Solution
- Java Regular Expression: Exercises, Practice, Solution
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework