python_by_example/trtl/turtle03.py
2023-11-11 00:09:22 -03:00

18 lines
287 B
Python

import turtle as tt
def turtle_03():
"""Draw a circle"""
# Settings
tt.bgcolor("black")
tt.color("magenta")
tt.fillcolor("yellow")
tt.pensize(3)
tt.speed(3)
# Circle
tt.begin_fill()
tt.circle(100)
tt.end_fill()
tt.exitonclick()