📅 2009-Oct-12 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ dictionaries, python ⬩ 📚 Archive
adict={}
# Create dictionary with key-value pairs
adict={10:"foobar", 99:"hello world"} # {10: 'foobar', 99: 'hello world'}
# Add new key-value pair to dictionary
adict[30]=1234567 # {10: 'foobar', 99: 'hello world', 30: 1234567}
# Delete element from dictionary
del adict[10] # {99: 'hello world', 30: 1234567}