“Python Product of List” Ответ

Python Product of List

# Python3 program to multiply all values in the
# list using lambda function and reduce()
 
from functools import reduce
list1 = [1, 2, 3]
list2 = [3, 2, 4]
 
 
result1 = reduce((lambda x, y: x * y), list1)
result2 = reduce((lambda x, y: x * y), list2)
print(result1)
print(result2)
Testy Turtle

Список умножения питона

a_list = [1, 2, 3]

a_list = [item * 2 for item in a_list]

print(a_list)
OUTPUT
[2, 4, 6]
Dezach

Ответы похожие на “Python Product of List”

Вопросы похожие на “Python Product of List”

Смотреть популярные ответы по языку

Смотреть другие языки программирования