In class we were assigned to make art with python coding. We were allowed to choose our own partner and so I choose Randy. We decided on a design of the Spider-man logo. We split the logo into two halves. I did the bottom half while Randy did the top half. I didn't struggle with anything for my half but when I finished and I tried to help Randy things started to mess up. The Spider-man logo is very weird because both halves do not compliment each other making the logo look ruined. After that mess up we had a problem filling in the image so parts of the logo aren't filled in and we couldn't fix them. This is how the logo came out in the end.
And this is the code for our logo.
import turtle
tortise = turtle.Turtle()
turtle.bgcolor('red')
tortise.width(4)
# partner 1 put your code here
tortise.begin_fill()
tortise.backward(78)
tortise.forward(179)
tortise.left(90)
tortise.circle(90,180)
#this creates the head
tortise.right(135)
tortise.forward(80)
tortise.left(80)
tortise.forward(80)
tortise.right(125)
tortise.forward(150)
tortise.right(175)
tortise.forward(120)
tortise.left(123)
tortise.forward(75)
tortise.right(90)
tortise.forward(90)
#This creates the left bottom arm
tortise.penup()
tortise.goto(100,0)
tortise.pendown()
tortise.left(95)
tortise.forward(80)
tortise.right(80)
tortise.forward(80)
tortise.left(125)
tortise.forward(150)
tortise.left(175)
tortise.forward(120)
tortise.right(123)
tortise.forward(75)
tortise.left(90)
tortise.forward(90)
#this creaates the bottom right arm
tortise.penup()
tortise.goto(-72,32)
tortise.setheading(126)
tortise.pendown()
tortise.forward(100)
tortise.left(90)
tortise.forward(65)
tortise.right(125)
tortise.forward(105)
tortise.right(175)
tortise.forward(85)
tortise.left(120)
tortise.forward(70)
tortise.right(90)
tortise.forward(120)
#this creates the top left arm
tortise.penup()
tortise.goto(92,32)
tortise.pendown()
tortise.setheading(47)
tortise.forward(100)
tortise.right(90)
tortise.forward(65)
tortise.left(125)
tortise.forward(105)
tortise.left(175)
tortise.forward(85)
tortise.right(120)
tortise.forward(70)
tortise.left(95)
tortise.forward(105)
#this creates the top right arm
#partner 2 put your code here
tortise.penup()
tortise.goto(0,0)
tortise.setheading(0)
tortise.forward(100)
tortise.right(90)
tortise.pendown()
tortise.forward(10)
tortise.left(90)
tortise.forward(30)
tortise.right(35)
tortise.forward(60)
tortise.right(45)
tortise.forward(100)
tortise.right(45)
tortise.forward(150)
tortise.right(170)
tortise.forward(120)
tortise.left(35)
tortise.forward(80)
tortise.left(45)
tortise.forward(60)
tortise.left(145)
tortise.forward(90)
tortise.right(40)
tortise.forward(185)
tortise.right(170)
tortise.forward(185)
tortise.left(45)
tortise.forward(75)
tortise.left(100)
tortise.forward(25)
tortise.right(280)
#this creates the right legs
for i in range(12):
tortise.forward(15)
tortise.right(7)
tortise.right(43)
tortise.forward(30)
tortise.penup()
tortise.goto(0,0)
tortise.forward(80)
tortise.left(90)
tortise.pendown()
#this creates the right abdomen half
tortise.forward(10)
tortise.right(90)
tortise.forward(30)
tortise.left(35)
tortise.forward(60)
tortise.left(45)
tortise.forward(100)
tortise.left(45)
tortise.forward(150)
tortise.left(170)
tortise.forward(120)
tortise.right(35)
tortise.forward(80)
tortise.right(45)
tortise.forward(60)
tortise.right(145)
tortise.forward(90)
tortise.left(40)
tortise.forward(185)
tortise.left(170)
tortise.forward(185)
tortise.right(45)
tortise.forward(75)
tortise.right(100)
tortise.forward(25)
tortise.left(280)
#this creates the left legs
for i in range(12):
tortise.forward(15)
tortise.left(7)
tortise.left(43)
tortise.forward(30)
#this creates the left abdomen half
#this fills it in the end
tortise.end_fill()