10 lines
70 B
Python
10 lines
70 B
Python
import turtle
|
|
|
|
t=turtle.Turtle()
|
|
|
|
t.shape("turtle")
|
|
|
|
t.forward(100)
|
|
|
|
|