At the top of your script, put the following multi-line comment with your information:
'''
Your name as registered, with optional nickname in parentheses
CIS 41A Fall 2021
Unit D, Exercise D
'''
All print output should include descriptions as shown in the example output below.
apple:sauce
peach:cobbler
carrot:cake
strawberry:sorbet
banana:cream pie
Alabama:Montgomery
Alaska:Juneau
Arizona:Phoenix
Arkansas:Little Rock
California:Sacramento
California:Sac.
Colorado:Denver
Connecticut:Hartford
Be sure that the California capitol is Sac. and not Sacramento.
Sample Execution Results:
apple dessert is: sauce banana dessert exists: True pear dessert exists: False dict_keys(['apple', 'peach', 'strawberry', 'banana', 'mango']) dict_values(['sauce', 'cobbler', 'shortcake', 'cream pie', 'sticky rice']) dict_items([('apple', 'sauce'), ('peach', 'cobbler'), ('strawberry', 'shortcake'), ('banana', 'cream pie'), ('mango', 'sticky rice')]) Sorted state capitols: ['Denver', 'Hartford', 'Juneau', 'Little Rock', 'Montgomery', 'Phoenix', 'Sac.'] Students in both classes: ['Audry', 'Migel', 'Tanya'] All students: ['Audry', 'Hiroto', 'Jia', 'John', 'Li', 'Migel', 'Sasha', 'Tanya'] Sasha is in class1: False
Add the following at the end of the script to show your results:
'''
Execution results:
paste execution results here
'''
Submit your finished py script in Canvas, Exercise D.