TurtleCircle

A simple Circle drawing in Python with Turtle library.
 avatar
unknown
python
3 years ago
133 B
4
Indexable
import turtle

t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor("black")
t.pencolor('white')
t.width(2)

t.circle(90)

turtle.done()
Editor is loading...