python_by_example/trtl/turtle06.py

49 lines
818 B
Python
Raw Permalink Normal View History

2023-11-11 00:09:22 -03:00
import turtle as tt
def turtle_06():
"""Write 1 2 3, starting at the bottom of the number one."""
# Settings
tt.bgcolor("black")
tt.color("magenta")
tt.pensize(10)
tt.speed(3)
# Number 1
tt.up()
tt.back(150)
tt.left(90)
tt.down()
tt.forward(200)
tt.up()
# Number 2
tt.right(90)
tt.forward(100)
tt.down()
tt.forward(100)
tt.right(90)
tt.forward(100)
tt.right(90)
tt.forward(100)
tt.left(90)
tt.forward(100)
tt.left(90)
tt.forward(100)
tt.up()
# Number 3
tt.forward(75)
tt.down()
tt.forward(100)
tt.left(90)
tt.forward(100)
tt.left(90)
tt.forward(100)
tt.back(100)
tt.right(90)
tt.forward(100)
tt.left(90)
tt.forward(100)
tt.exitonclick()