Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
301968874bf0ebc146df1831b263bd35317f8801
/
.
/
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
()