Python: Power of a number in bases raises to the corresponding number
4. Power List Map
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 :
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]
For more Practice: Solve these Related Problems:
- Write a Python program to generate a list where each element is a number raised to the power of its index using map.
- Write a Python program to create a list where each element is computed by raising a given base to the power of the corresponding number in a list using map.
- Write a Python program to generate a list where each element is the number raised to the power of (its index + 2) using map.
- Write a Python program to map a custom power function over a list where each element is raised to a power derived from its index.
Go to:
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.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.