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 BearBear 04/07/201904/07/2019 | IreneIrene | 0 Comment Draw a bear! READ MOREREAD MORE Magnifying GlassMagnifying Glass 04/13/201904/13/2019 | Steven GuSteven Gu | 0 Comment Something is fishy around here! READ MOREREAD MORE Blue StarBlue Star 03/25/201903/25/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a star filled with blue color. 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()
Magnifying GlassMagnifying Glass 04/13/201904/13/2019 | Steven GuSteven Gu | 0 Comment Something is fishy around here! READ MOREREAD MORE
Blue StarBlue Star 03/25/201903/25/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a star filled with blue color. 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!