Python 3 Tutorial: How To Use The Map Built in Function

preview_player
Показать описание
In this Python 3 tutorial, we take a look at the map built-in function. This function will call a function on each value contained in a iteratable object.

Be sure to like, share and comment to show your support for our tutorials.

=======================================
======================================
Рекомендации по теме
Комментарии
Автор

Keep making these kind of videos.
Very helpful

technicalilm
Автор


a = [1, 2, 3, 4, 5]
b = [6, 7, 8, 9, 10]
c = [ ]

for x, y in zip(a, b):
c.append(x * y)
#prints "[6, 14, 24, 36, 50]" when "c" is called

mountainscott
Автор

Could you do something with your keyboard?

RagHelen