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

+6 votes

How do you move the envelopes?

asked in CSC201 Spring 2021 by (1 point)

1 Answer

+3 votes

You'll use the .move() method with the envelope image object. That will be in a move function in your envelope.py file. You'll call that function over and over in your playgame function in the main program.

answered by (1 point)
+3

Yes, but you have to WRITE the move() method inside the envelope class.

Specifically, it needs to move the Image object that us visually representing the envelope in the window by calling the Image's move method!

0

Thank you so much!

...