Popsicle 03/29/201903/29/2019 | IreneIrene | 2 Comments | 9:37 pm Categories: Difficulty Level 2 Draw a popsicle! Popsicle with Python Turtle Tags: basics 2 thoughts on “Popsicle” import turtle turtle.speed(0) turtle.pensize(7.5) turtle.begin_fill() turtle.fillcolor(‘bisque’) turtle.right(90) turtle.fd(70) turtle.circle(10,180) turtle.fd(70) turtle.left(90) turtle.fd(20) turtle.end_fill() turtle.begin_fill() turtle.fillcolor(‘pink’) turtle.fd(100) turtle.left(180) turtle.fd(220) turtle.left(90) turtle.fd(250) turtle.circle(110,180) turtle.fd(250) turtle.end_fill() Great. Looks good! Comments are closed. Post navigation PREVIOUS Previous post: Happy Egg HeadsNEXT Next post: Watermelon Related Post Domino’s Pizza Logo with Python TurtleDomino’s Pizza Logo with Python Turtle 05/05/201905/05/2019 | Arwen HeArwen He | 0 Comment READ MOREREAD MORE PetalPetal 03/21/201903/21/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a petal shape as shown. Trick here is use circle() function’s extent parameter to draw an arc of a circle and then call setheading() function with opposite (+180 degrees) READ MOREREAD MORE YouTube LogoYouTube Logo 04/28/201904/28/2019 | Kevin XuKevin Xu | 0 Comment Draw YouTube symbol with round corners! READ MOREREAD MORE
import turtle turtle.speed(0) turtle.pensize(7.5) turtle.begin_fill() turtle.fillcolor(‘bisque’) turtle.right(90) turtle.fd(70) turtle.circle(10,180) turtle.fd(70) turtle.left(90) turtle.fd(20) turtle.end_fill() turtle.begin_fill() turtle.fillcolor(‘pink’) turtle.fd(100) turtle.left(180) turtle.fd(220) turtle.left(90) turtle.fd(250) turtle.circle(110,180) turtle.fd(250) turtle.end_fill()
Domino’s Pizza Logo with Python TurtleDomino’s Pizza Logo with Python Turtle 05/05/201905/05/2019 | Arwen HeArwen He | 0 Comment READ MOREREAD MORE
PetalPetal 03/21/201903/21/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a petal shape as shown. Trick here is use circle() function’s extent parameter to draw an arc of a circle and then call setheading() function with opposite (+180 degrees) READ MOREREAD MORE
YouTube LogoYouTube Logo 04/28/201904/28/2019 | Kevin XuKevin Xu | 0 Comment Draw YouTube symbol with round corners! READ MOREREAD MORE
import turtle
turtle.speed(0)
turtle.pensize(7.5)
turtle.begin_fill()
turtle.fillcolor(‘bisque’)
turtle.right(90)
turtle.fd(70)
turtle.circle(10,180)
turtle.fd(70)
turtle.left(90)
turtle.fd(20)
turtle.end_fill()
turtle.begin_fill()
turtle.fillcolor(‘pink’)
turtle.fd(100)
turtle.left(180)
turtle.fd(220)
turtle.left(90)
turtle.fd(250)
turtle.circle(110,180)
turtle.fd(250)
turtle.end_fill()
Great. Looks good!