Python Forum
Help drawing circles with turtle
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help drawing circles with turtle
#3
import turtle
from turtle import *

t = turtle.Turtle()
t.hideturtle()
turtle.bgcolor("light green")
t.penup()
t.goto(-100,-80)
t.pendown()

t.color('red','yellow')
t.begin_fill()
for i in range(3):
t.forward(50)
t.left(90)
t.forward(50)
t.left(90)
t.forward(50)
t.left(90)
t.end_fill()
turtle.done()

This is what i got
Reply


Messages In This Thread
Help drawing circles with turtle - by songminguk - Dec-19-2017, 07:42 PM
RE: HELP! - by micseydel - Dec-19-2017, 07:47 PM
RE: HELP! - by songminguk - Dec-19-2017, 07:54 PM
RE: HELP! - by squenson - Dec-19-2017, 08:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Create a turtle drawing from .txt file Noob101 20 9,583 Jan-29-2021, 04:13 PM
Last Post: nilamo
  Drawing wheels in a turtle woehh 1 2,008 Apr-23-2020, 02:58 PM
Last Post: deanhystad
  Turtle Polygon drawing program tp_oz 3 3,307 Jul-23-2019, 01:01 PM
Last Post: ichabod801
  Drawing circles with loops (solved) Villr 0 5,209 Oct-01-2018, 10:51 AM
Last Post: Villr
  Turtle drawing Right Triangle Zatoichi 3 5,855 Feb-26-2018, 12:24 AM
Last Post: Zatoichi

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020