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 Beats Logo with Python TurtleBeats Logo with Python Turtle 05/05/201905/05/2019 | AanishAanish | 0 Comment READ MOREREAD MORE One to Ten (Source Code)One to Ten (Source Code) 10/23/202010/23/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw from a single point to ten points that fall into a single line. Also draw dots on the end points. Source Code: READ MOREREAD MORE Tea CupTea Cup 03/23/201903/23/2019 | IreneIrene | 2 Comments Draw a simple tea cup shape as shown here. 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()
Beats Logo with Python TurtleBeats Logo with Python Turtle 05/05/201905/05/2019 | AanishAanish | 0 Comment READ MOREREAD MORE
One to Ten (Source Code)One to Ten (Source Code) 10/23/202010/23/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw from a single point to ten points that fall into a single line. Also draw dots on the end points. Source Code: READ MOREREAD MORE
Tea CupTea Cup 03/23/201903/23/2019 | IreneIrene | 2 Comments Draw a simple tea cup shape as shown here. 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!