w3resource

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 Python skills with w3resource's quiz


Python: Tips of the Day

Randomizes the order of the values of an list, returning a new list

Example:

from copy import deepcopy
from random import randint

def tips_shuffle(lst):
  temp_lst = deepcopy(lst)
  m = len(temp_lst)
  while (m):
    m -= 1
    i = randint(0, m)
    temp_lst[m], temp_lst[i] = temp_lst[i], temp_lst[m]
  return temp_lst

x = [2,4,6,8]
print(tips_shuffle(x))

Output:

[8, 2, 6, 4]