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 Da PizzaDa Pizza 04/09/201904/09/2019 | Dorothy ZhangDorothy Zhang | 0 Comment Draw a pepperoni pizza like this: READ MOREREAD MORE Two Vertical FootballsTwo Vertical Footballs 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw two vertical footballs as shown without lifting the pen. Code: READ MOREREAD MORE Oval with 4 ArcsOval with 4 Arcs 03/25/201903/25/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment You can generate the look of an oval shape with 4 circle arcs. Draw the first arc with larger radius and extent 90; draw the second arc with smaller radius 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()
Da PizzaDa Pizza 04/09/201904/09/2019 | Dorothy ZhangDorothy Zhang | 0 Comment Draw a pepperoni pizza like this: READ MOREREAD MORE
Two Vertical FootballsTwo Vertical Footballs 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw two vertical footballs as shown without lifting the pen. Code: READ MOREREAD MORE
Oval with 4 ArcsOval with 4 Arcs 03/25/201903/25/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment You can generate the look of an oval shape with 4 circle arcs. Draw the first arc with larger radius and extent 90; draw the second arc with smaller radius 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!