Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+3 votes
asked in CSC201 Spring 2021 by (1 point)
reopened by
+2

From the Zelle graphics.py module, you can display an image in the window by doing Image(anchorPoint, filename)

+1

If you solve your own question, you should still post an answer because other people may have the same question and click on yours looking for an answer!

+2

I did it by doing image = Image(anchorPoint, filename) then drawing it in the window, before drawing any object on the window.

1 Answer

+1 vote

Use Image(anchorPoint, filename) and draw it to the window before drawing anything else. That way the image will on the bottom and work as a background.

answered by (1 point)
...