Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Doc/includes/turtle-star.py
12 views
1
from turtle import *
2
color('red', 'yellow')
3
begin_fill()
4
while True:
5
forward(200)
6
left(170)
7
if abs(pos()) < 1:
8
break
9
end_fill()
10
done()
11
12