Back to Browse

Python map 🗺️

24.7K views
Jan 18, 2021
4:02

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 👟 : =========================================================== https://teespring.com/stores/bro-code-5 ===========================================================

Download

1 formats

Video Formats

360pmp44.5 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

Python map 🗺️ | NatokHD