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

20 lines
316 B
Python

import turtle as tt
def turtle_01():
"""Draw a square"""
# Settings
tt.bgcolor("black")
tt.color("magenta")
tt.speed(2)
# Square
tt.forward(100)
tt.right(90)
tt.forward(100)
tt.right(90)
tt.forward(100)
tt.right(90)
tt.forward(100)
tt.exitonclick()