Back to Browse

Python dictionaries ๐Ÿ“–

27.6K views
Nov 30, 2020
8:01

Python dictionaries tutorial explained #dictionary = A changeable, unordered collection of unique key:value pairs # Fast because they use hashing, allow us to access a value quickly capitals = {'USA':'Washington DC', 'India':'New Dehli', 'China':'Beijing', 'Russia':'Moscow'} #capitals.update({'Germany':'Berlin'}) #capitals.update({'USA':'Las Vegas'}) #capitals.pop('China') #capitals.clear() #print(capitals['Germany']) #print(capitals.get('Germany')) #print(capitals.keys()) #print(capitals.values()) #print(capitals.items()) for key,value in capitals.items(): print(key, value) #python #dictionaries #dictionary โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“ Up In My Jam (All Of A Sudden) by - Kubbi https://soundcloud.com/kubbi Creative Commons โ€” Attribution-ShareAlike 3.0 Unportedโ€” CC BY-SA 3.0 Free Download / Stream: http://bit.ly/2JnDfCE Music promoted by Audio Library https://youtu.be/tDexBj46oNI โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“โ€“

Download

1 formats

Video Formats

360pmp410.5 MB

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

Python dictionaries ๐Ÿ“– | NatokHD