Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
a6c4a10d4e70aa81fcee842f84b71e8c8e7fb142
/
.
/
Doc
/
includes
/
turtle-star.py
blob: 1a5db761b32385d62ee3c67b65df9a36f3b56254 [
file
] [
log
] [
blame
]
from
turtle
import
*
color
(
'red'
,
'yellow'
)
begin_fill
()
while
True
:
forward
(
200
)
left
(
170
)
if
abs
(
pos
())
<
1
:
break
end_fill
()
done
()