Code Toolkit: Python, Spring 2024
Week 11 — Homework assignment
due: Tues, April 16, 8pm
-
Review the class notes for this week.
Please note: You have a reading to
prepare for discussion this week. Check
the schedule page (under week 12).
-
Modify your dictionary lookup program from last week so that any
new definitions added by the user are saved from one run of the
program to the next. To do this, when the program exists, save
your dictionary as JSON into a file. You will have to modify
your program so that when it starts, it first loads this JSON
file into your dictionary. You can either manually create a JSON
file by hand to start (you could put the definitions you started
with last time in here) or add code to check whether the JSON
file exists.
-
Modify your guessing game from last week to add a "high score
list"? When the game ends, attempt to load a JSON file with a
high score data structure, or if it does not exist, create
one. Add the user's name and score (number of guesses) to the
data structure and print it. Then save the modified score list
to a JSON file.
-
Create a simple Processing sketch that changes based on user
interaction, and then use JSON to save the state of the sketch
and reload then when you re-open it. For example, consider
using Week 6 homework that added a
new item to a "herd of creatures" every time the user pressed a
key.