# Homework 23, problem 2: Inventory weights. # # Sum every weight in the `inventory` dict and print: # Total weight: # # Run with: python exercises/23/homework/02-inventory-weights.py inventory = { "sword": 3.5, "shield": 5.0, "potion": 0.2, "map": 0.1, "coins": 0.05, } # Your code goes here: