Write an original program that uses graphics to draw something interesting. Make sure to be original -- don’t repeat drawing of objects already used by your classmates. Part A - by Friday (11/6) EOD...

1 answer below »
I need to finish this assignment before 12 am. I can only use the graphics function. I can not use any overly advanced python functions.


Write an original program that uses graphics to draw something interesting.  Make sure to be original -- don’t repeat drawing of objects already used by your classmates.      Part A - by Friday (11/6) EOD Create a thread for you program which include:   1. A subject line that describes what the program is doing (what are you drawing?) 2. Your program as text (paste in a post) - make sure the indentation is correct!  3. Examples and screenshots of your output (paste in a post) 4. Your original program file (.py) See example posted by the instructor   Part B - by Sunday (11/8) EOD 5. Review at least 2 other threads and try to correct them / suggest additions    Remember:  · Only use the material covered in this module -- do not use more advanced functions not covered yet in the course  · Make sure to include comments that explain all your steps (starts with #). Also use a comment to sign your name at the beginning of the program! · Work individually and only submit original work · Run the program a few times to make sure it executes and meets all the requirements   · Submit a .py file! I can only use these links as references: https://mcsp.wartburg.edu/zelle/python/graphics/graphics.pdf https://courses.lumenlearning.com/suny-albany-programmingforproblemsolving-v2/chapter/graphics-designing-and-developing-graphics-programs/
Answered Same DayNov 07, 2021

Answer To: Write an original program that uses graphics to draw something interesting. Make sure to be original...

Neha answered on Nov 07 2021
151 Votes
from graphics import *
import time
def moveAll(shapeList, dx, dy):
for shape in shapeList:
shape.move(dx, dy)

def moveAllOnLine(shapeList, dx, dy, repetitions, delay):
for i in range(repetitions):
moveAll(shapeList, dx, dy)
time.sleep(delay)

def makeFace(center, win):
head = Circle(center, 25)
head.setFill("red")
head.draw(win)
eye1Center = center.clone()
eye1Center.move(-10, 5)
eye1 =...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here