Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created May 17, 2016 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/f138702f610ba295f729e41ac0316e77 to your computer and use it in GitHub Desktop.
Save codecademydev/f138702f610ba295f729e41ac0316e77 to your computer and use it in GitHub Desktop.
Codecademy export
inventory = {
'gold' : 500,
'pouch' : ['flint', 'twine', 'gemstone'], # Assigned a new list to 'pouch' key
'backpack' : ['xylophone','dagger', 'bedroll','bread loaf']
}
# Adding a key 'burlap bag' and assigning a list to it
inventory['burlap bag'] = ['apple', 'small ruby', 'three-toed sloth']
# Sorting the list found under the key 'pouch'
inventory['pouch'].sort()
# Your code here
inventory = {'pocket' : ['seashell', 'strange berry', 'lint']}
inventory['backpack'].sort()
inventory['backpack'].remove('dagger')
inventory['gold'] = 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment