generated from mwc/lab_turtle
Initial commit
This commit is contained in:
22
drawing.py
Normal file
22
drawing.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from turtle import (
|
||||
forward,
|
||||
back,
|
||||
left,
|
||||
right,
|
||||
penup,
|
||||
pendown,
|
||||
color,
|
||||
)
|
||||
|
||||
forward(100)
|
||||
right(360 * 2 / 5)
|
||||
forward(100)
|
||||
right(360 * 2 / 5)
|
||||
forward(100)
|
||||
right(360 * 2 / 5)
|
||||
forward(100)
|
||||
right(360 * 2 / 5)
|
||||
forward(100)
|
||||
right(360 * 2 / 5)
|
||||
|
||||
input()
|
Reference in New Issue
Block a user