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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join