This is an inventory program that uses the following data structures: A list to store item names A dictionary to store the corresponding item prices
- Add a New Item
- To input an item name and price
- Add it to both the list and dictionary
- Prevent duplicate item names
- Update the price of an existing item
- Ask for the item name
- If it exists, update its price
- If it doesn't exist, it shows an error message

