Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

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 »
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 co
ect! 
3. Examples and screenshots of your output (paste in a post)
4. Your original program file (.py)
See example posted by the instructo
 
Part B - by Sunday (11/8) EOD
5. Review at least 2 other threads and try to co
ect 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/chapte
graphics-designing-and-developing-graphics-programs/
Answered Same Day Nov 07, 2021

Solution

Neha answered on Nov 07 2021
154 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