sw_characters = {'Jar Jar':'Slimy, semi-aquatic annoying, blubbering idiot, though sometimes considered a genius by the uninformed',
'Obi Wan Kenobi':'Jedi Knight with cool British accent',
'Grogu': 'Apparently, for Arwen, a snack',
'Princess Leia': 'Princess who yeeted into the trash and kissed her brother',
}
print(sw_characters['Grogu'])
for i in sw_characters.keys():
print(sw_characters[i])
sw_characters['Grogu']='Really cute'
print(sw_characters['Grogu'])
sw_characters['Han Solo']='Scruffy looking nerf herder aka the smoothest guy ever, not so smart, except when it counted'
print(sw_characters)
gro_prices = {'eggs':3.99,
'bread':2.99,
'milk':5.99,
'Peeps':1.99,
'Chocolate' : 2.99,
'strawberries': 3.99,
'soda': 1.99
}
lookup = input("enter the item to find the price")
print(gro_prices[lookup])