generated from mwc/lab_turtle
14 lines
146 B
Python
14 lines
146 B
Python
python drawing.pythonfrom turtle import (
|
|
forward,
|
|
back,
|
|
left,
|
|
right,
|
|
penup,
|
|
pendown,
|
|
color,
|
|
)
|
|
|
|
forward(200)
|
|
|
|
input()
|