Watermelon 03/29/201903/29/2019 | IreneIrene | 2 Comments | 9:39 pm Categories: Difficulty Level 2 Draw a watermelon with eyes and mouth 🙂 Watermelon with Python Turtle Tags: basics 2 thoughts on “Watermelon” import turtle turtle.speed(0) turtle.up() turtle.circle(250,270) turtle.down() turtle.begin_fill() turtle.fillcolor(‘limegreen’) turtle.circle(250,180) turtle.left(90) turtle.fd(50) turtle.left(90) turtle.circle(-200,180) turtle.left(90) turtle.fd(50) turtle.end_fill() turtle.left(180) turtle.fd(50) turtle.right(90) turtle.begin_fill() turtle.fillcolor(‘red’) turtle.circle(200,180) turtle.left(90) turtle.fd(400) turtle.end_fill() turtle.up() turtle.goto(-130,230) turtle.down() turtle.begin_fill() turtle.fillcolor(‘black’) turtle.circle(25) turtle.end_fill() turtle.up() turtle.goto(-135,220) turtle.down() turtle.begin_fill() turtle.fillcolor(‘white’) turtle.circle(15) turtle.end_fill() turtle.up() turtle.goto(130,230) turtle.down() turtle.begin_fill() turtle.fillcolor(‘black’) turtle.circle(25) turtle.end_fill() turtle.up() turtle.goto(125,220) turtle.down() turtle.begin_fill() turtle.fillcolor(‘white’) turtle.circle(15) turtle.end_fill() turtle.up() turtle.pensize(10) turtle.goto(15,100) turtle.circle(15,270) turtle.down() turtle.circle(15,-180) Nice. It works! Comments are closed. Post navigation PREVIOUS Previous post: PopsicleNEXT Next post: Connect Four Game with Monte Carlo Tree and Python Turtle Related Post Football Shape with Python TurtleFootball Shape with Python Turtle 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a football shape as shown with Turtle’s circle function. Code: READ MOREREAD MORE Hexagon Spiral with Python and Turtle (Source Code)Hexagon Spiral with Python and Turtle (Source Code) 08/21/202008/21/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following spiral with hexagon shape. In each loop, increase the forward length and turn slightly less than 60 degrees. Source Code: READ MOREREAD MORE CrescentCrescent 03/21/201903/21/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment In a level 1 project you drew several tangent circles. Just draw two tangent circles but fill the shape with your favorite color to make it look like a crescent READ MOREREAD MORE
import turtle turtle.speed(0) turtle.up() turtle.circle(250,270) turtle.down() turtle.begin_fill() turtle.fillcolor(‘limegreen’) turtle.circle(250,180) turtle.left(90) turtle.fd(50) turtle.left(90) turtle.circle(-200,180) turtle.left(90) turtle.fd(50) turtle.end_fill() turtle.left(180) turtle.fd(50) turtle.right(90) turtle.begin_fill() turtle.fillcolor(‘red’) turtle.circle(200,180) turtle.left(90) turtle.fd(400) turtle.end_fill() turtle.up() turtle.goto(-130,230) turtle.down() turtle.begin_fill() turtle.fillcolor(‘black’) turtle.circle(25) turtle.end_fill() turtle.up() turtle.goto(-135,220) turtle.down() turtle.begin_fill() turtle.fillcolor(‘white’) turtle.circle(15) turtle.end_fill() turtle.up() turtle.goto(130,230) turtle.down() turtle.begin_fill() turtle.fillcolor(‘black’) turtle.circle(25) turtle.end_fill() turtle.up() turtle.goto(125,220) turtle.down() turtle.begin_fill() turtle.fillcolor(‘white’) turtle.circle(15) turtle.end_fill() turtle.up() turtle.pensize(10) turtle.goto(15,100) turtle.circle(15,270) turtle.down() turtle.circle(15,-180)
Football Shape with Python TurtleFootball Shape with Python Turtle 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a football shape as shown with Turtle’s circle function. Code: READ MOREREAD MORE
Hexagon Spiral with Python and Turtle (Source Code)Hexagon Spiral with Python and Turtle (Source Code) 08/21/202008/21/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following spiral with hexagon shape. In each loop, increase the forward length and turn slightly less than 60 degrees. Source Code: READ MOREREAD MORE
CrescentCrescent 03/21/201903/21/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment In a level 1 project you drew several tangent circles. Just draw two tangent circles but fill the shape with your favorite color to make it look like a crescent READ MOREREAD MORE
import turtle
turtle.speed(0)
turtle.up()
turtle.circle(250,270)
turtle.down()
turtle.begin_fill()
turtle.fillcolor(‘limegreen’)
turtle.circle(250,180)
turtle.left(90)
turtle.fd(50)
turtle.left(90)
turtle.circle(-200,180)
turtle.left(90)
turtle.fd(50)
turtle.end_fill()
turtle.left(180)
turtle.fd(50)
turtle.right(90)
turtle.begin_fill()
turtle.fillcolor(‘red’)
turtle.circle(200,180)
turtle.left(90)
turtle.fd(400)
turtle.end_fill()
turtle.up()
turtle.goto(-130,230)
turtle.down()
turtle.begin_fill()
turtle.fillcolor(‘black’)
turtle.circle(25)
turtle.end_fill()
turtle.up()
turtle.goto(-135,220)
turtle.down()
turtle.begin_fill()
turtle.fillcolor(‘white’)
turtle.circle(15)
turtle.end_fill()
turtle.up()
turtle.goto(130,230)
turtle.down()
turtle.begin_fill()
turtle.fillcolor(‘black’)
turtle.circle(25)
turtle.end_fill()
turtle.up()
turtle.goto(125,220)
turtle.down()
turtle.begin_fill()
turtle.fillcolor(‘white’)
turtle.circle(15)
turtle.end_fill()
turtle.up()
turtle.pensize(10)
turtle.goto(15,100)
turtle.circle(15,270)
turtle.down()
turtle.circle(15,-180)
Nice. It works!