Comment out the line "WaitForMouseClick()" by entering a "#" at the beginning
of the line like "#WaitForMouseClick()", then run the program.
Change "image = ReadImage('1-pets.jpg')" to "image = ReadImage('mypets.jpg')".
This will cause an error unless the file "1-pets.jpg" is copied to "mypets.jpg"
Make a knock knock joke. This could take 3 images, so add extra lines
for reading another image, displaying another image, and waiting for another mouse click.
Advanced
Remove all ReadImage, DrawImage and WaitForMouseClick lines.
Then add the following lines and note that spaces are important:
for number in range(1, 2):
image = ReadImage('2-fish-' + str(number) + '.png')
DrawImage(image)
WaitForMouseClick()
Note that there is a list of spiders that is used to find out whether the
bug touched the spiders. Commenting out the line objects.append(spider) like
"#objects.append(spider)" will not beep or change the score.
Remove the #, and add the "if i < 20:" before objects.append(spider) and the bug will
only touch half of the spiders. Note that spaces are important: