Create a dictionary inventory that maps a type of fruit to a count of how many are available at a fruit stand: • 23 apples (use 'apples' as the key) • 14 pears • 8 bananas • 20 oranges [1] inventory = {'apples' : 23, 'pears' : 14, 'bananas' : 8, 'oranges' : 20}