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 Five Pointed Star with Python TurtleFive Pointed Star with Python Turtle 10/06/202110/06/2021 | JinshengJinsheng | 0 Comment Draw a five pointed star as shown preferably with a loop. READ MOREREAD MORE Clock Tick MarksClock Tick Marks 03/22/201903/22/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw evenly space 60 clock tick marks as shown here. READ MOREREAD MORE 8 of Diamonds8 of Diamonds 02/27/201902/27/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Find unicode of diamond symbol and draw the 8 of diamonds. 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()
Five Pointed Star with Python TurtleFive Pointed Star with Python Turtle 10/06/202110/06/2021 | JinshengJinsheng | 0 Comment Draw a five pointed star as shown preferably with a loop. READ MOREREAD MORE
Clock Tick MarksClock Tick Marks 03/22/201903/22/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw evenly space 60 clock tick marks as shown here. READ MOREREAD MORE
8 of Diamonds8 of Diamonds 02/27/201902/27/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Find unicode of diamond symbol and draw the 8 of diamonds. 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!