https://github.com/python/cpython
Raw File
Tip revision: 4069f356c8c783e79870eb24fc6cb12707ad0ecf authored by Serhiy Storchaka on 21 October 2018, 12:25:53 UTC
bpo-34973: Fix crash in bytes constructor. (GH-9841)
Tip revision: 4069f35
turtle-star.py
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
    forward(200)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()
done()
back to top