Sign in
◑
Theme
chromium
/
external
/
github.com
/
python
/
cpython
/
1a5201f80d2293cd5ab83f4f3a751fb508f64ea7
/
.
/
Doc
/
includes
/
turtle-star.py
blob: 1a5db761b32385d62ee3c67b65df9a36f3b56254 [
file
]
from
turtle
import
*
color
(
'red'
,
'yellow'
)
begin_fill
()
while
True
:
forward
(
200
)
left
(
170
)
if
abs
(
pos
())
<
1
:
break
end_fill
()
done
()