Home Help & Support Search Tips Options: Case:



   Need A Tutor?    |   Need Homework Help?                                                                             Help and Support     | Join or Cancel

Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler

Computer Programming
Assignment 3
Turtle Graphics


These programs can be run here:        http://www.Pythonturtlecompiler.html
 
Or you can paste the codes into Python or IDLE.
Warning: Do not use these codes for your Assignments. You can look at the codes and learn how to create nice programs,
Try changing some sizes and colors to make the programs unique. The programs work perfectly in Python and IDLE.
*The bottom three programs were not submitted for grading. I worked on about 6 programs for this assignment
And submitted the top two programs for grading. The other programs are rough drafts and still need polishing up, but they work.


#======================================================================================
# PROGRAMMER:       Website Owner
# PROGRAM NAME:     Directions A3 - Graphics in Python
# DATE WRITTEN:     June 2, 2019
#======================================================================================
import turtle;
turtle.hideturtle()
 
turtle.goto(-175, 0)
 
turtle.forward(180)
 
turtle.left(90)
 
turtle.forward(180)
 
turtle.back(360)
 
turtle.forward(180)
 
turtle.right(90)
 
turtle.forward(180)
 
turtle.penup()
turtle.goto(25, -35)
turtle.pendown()
turtle.color("black")
turtle.setheading(30)
turtle.circle(40)
 
 
turtle.penup()
turtle.setpos(-207, -8)
turtle.pendown()
turtle.write("West")
 
turtle.penup()
turtle.setpos(200,-8)
turtle.pendown()
turtle.write("East")
 
turtle.penup()
turtle.setpos(-7, 190)
turtle.pendown()
turtle.write("North")
 
turtle.penup()
turtle.setpos(-7,-203)
turtle.pendown()
turtle.write("South")
 
turtle.done()
#======================================================================================
# END PROGRAM 


#======================================================================================
# PROGRAMMER:       Website Owner
# PROGRAM NAME:     Olympic Rings A3 - Graphics in Python
# DATE WRITTEN:     June 2, 2019
#======================================================================================
import turtle;
 
turtle.width(5)
turtle.color("sky blue")
turtle.penup()
turtle.goto(-110, -25)
turtle.pendown()
turtle.circle(45)
 
turtle.color("black")
turtle.penup()
turtle.goto(0, -25)
turtle.pendown()
turtle.circle(45)
 
turtle.color("blue")
turtle.penup()
turtle.goto(110, -25)
turtle.pendown()
turtle.circle(45)
 
turtle.color("yellow")
turtle.penup()
turtle.goto(-55, -75)
turtle.pendown()
turtle.circle(45)
 
turtle.color("orange")
turtle.penup()
turtle.goto(55, -75)
turtle.pendown()
turtle.circle(45)
 
turtle.done()
#======================================================================================
# END PROGRAM 


#======================================================================================
# PROGRAMMER:       Type your first and last name here
# PROGRAM NAME:    
# DATE WRITTEN:     Enter the current date
#======================================================================================
import turtle;
 
# Color/fill and draw Hexagon shape
turtle.penup()
turtle.goto(-170, 0)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("yellow")
turtle.setheading(30)
turtle.circle(40, steps = 6) # Draw a hexagon
turtle.end_fill() # Fill the shape
 
# Color/fill and draw Octagon shape
turtle.penup()
turtle.goto(-160, -100)
turtle.pendown()
turtle.seth(-45)
turtle.color('red')
turtle.circle(200,90)
turtle.setheading(0)
turtle.circle(40, steps = 3) # Draw a circle
turtle.end_fill() # Fill the shape
 
# Color/fill and draw Triangle shape
turtle.penup()
turtle.goto(-30, -100)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("blue")
turtle.setheading(30)
turtle.circle(40) # Draw a circle
turtle.end_fill() # Fill the shape
 
# Color/fill and draw Octagon shape
turtle.penup()
turtle.goto(70, -35)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("orange")
turtle.setheading(180)
turtle.circle(40, steps = 3) # Draw a circle
turtle.end_fill() # Fill the shape
 
# Color/fill and draw Octagon shape
turtle.penup()
turtle.goto(200, -100)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("green")
turtle.setheading(0)
turtle.circle(40, steps = 8) # Draw a circle
turtle.end_fill() # Fill the shape
 
# Color/fill and draw Octagon shape
turtle.penup()
turtle.goto(200, 0)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("black")
turtle.setheading(0)
turtle.circle(40, steps = 4) # Draw a circle
turtle.end_fill() # Fill the shape
 
turtle.color("maroon")
turtle.penup()
turtle.goto(-100, 30)
turtle.pendown()
turtle.write("Cool Color Shapes", font= ("Times", 20, "bold"))
 
turtle.done()
#======================================================================================
# END PROGRAM 


#======================================================================================
# PROGRAMMER:       Website Owner
# PROGRAM NAME:    
# DATE WRITTEN:     Enter the current date
#======================================================================================
import turtle;
 
# Color/fill and draw hexagon shape
turtle.penup()
turtle.goto(-170, 0)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("dark green")
turtle.setheading(30)
turtle.circle(40, steps = 6) # Draw a hexagon
turtle.end_fill() # Fill the shape
 
turtle.color("black");
turtle.penup();
turtle.goto(-213, 18)
turtle.pendown();
turtle.write("GO", font= ("Times", 25, "bold"))
turtle.hideturtle();
 
# Color/fill and draw square shape
turtle.penup()
turtle.goto(-150, -100)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("blue")
turtle.setheading(45)
turtle.circle(50, steps = 4) # Draw a square
turtle.end_fill() # Fill the shape
 
# Color/fill and draw circle shape
turtle.penup()
turtle.goto(-30, -100)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("yellow")
turtle.setheading(30)
turtle.circle(40) # Draw a circle
turtle.end_fill() # Fill the shape
 
# Color/fill and draw triangle shape
turtle.penup()
turtle.goto(70, -35)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("orange")
turtle.setheading(180)
turtle.circle(45, steps = 3) # Draw a triangle
turtle.end_fill() # Fill the shape
 
# Color/fill and draw Octagon shape
turtle.penup()
turtle.goto(180, -105)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("purple")
turtle.setheading(0)
turtle.circle(40, steps = 8) # Draw a Octagon
turtle.end_fill() # Fill the shape
 
# Color/fill and draw stop sign shape with text
turtle.penup()
turtle.goto(200, 0)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("black")
turtle.setheading(30)
turtle.circle(40, steps = 6) # Draw a Stop Sign
turtle.end_fill() # Fill the shape
 
turtle.color("white");
turtle.penup();
turtle.goto(151, 21)
turtle.pendown();
turtle.write("STOP", font= ("Times", 18, "bold"))
turtle.hideturtle();
 
turtle.color("maroon")
turtle.penup()
turtle.goto(-120, 0)
turtle.pendown()
turtle.write("Cool Color Shapes", font= ("Arial", 20, "bold"))
 
turtle.done()
#======================================================================================
# END PROGRAM 


#======================================================================================
# PROGRAMMER:       Website Owner
# PROGRAM NAME:     Turtle Graphics: Triangles
# DATE WRITTEN:     Junes 2nd, 2019
#======================================================================================
import turtle;
 
turtle.hideturtle()
 
# Color/fill and draw square shape
turtle.penup()
turtle.goto(-50, 0)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("blue")
turtle.setheading(0)
turtle.circle(50, steps = 4) # Draw a square
turtle.end_fill() # Fill the shape
 
# Color/fill and draw square shape
turtle.penup()
turtle.goto(50, 0)
turtle.pendown()
turtle.begin_fill() # Begin to fill color in shape
turtle.color("blue")
turtle.setheading(0)
turtle.circle(50, steps = 4) # Draw a square
turtle.end_fill() # Fill the shape
 
#======================================================================================
# END PROGRAM


Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler


Home
Accounting & Finance Business
Computer Science General Studies Math Sciences
Civics Exam
Everything Else
Help & Support
Join/Cancel
Contact Us
 Login / Log Out