lab_turtle/star.py

9 lines
106 B
Python

from turtle import *
for line in range(5):
forward(100)
right(360 * 2 / 5)
print("Yay")
input()