Python map 🗺️

preview_player
Показать описание
Python map function tutorial example explained

#python #map #function

# ---------------------------------------------------------------------------------------------------------------
# map() = applies a function to each item in an iterable (list, tuple, etc.)
#
# map(function,iterable)

store = [("shirt",20.00),
("pants",25.00),
("jacket",50.00),
("socks",10.00)]

to_euros = lambda data: (data[0],data[1]*0.82)
# to_dollars = lambda data: (data[0],data[1]/0.82)

store_euros = list(map(to_euros, store))

for i in store_euros:
print(i)
# ---------------------------------------------------------------------------------------------------------------

Bro Code merch store 👟 :
===========================================================
===========================================================
Рекомендации по теме