49 lines
818 B
Python
49 lines
818 B
Python
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()
|