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
#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
- Category
- Bro Code
- Tags
- python, functional programming, python map
Be the first to comment


