Python Turtle
https://docs.python.org/3.3/library/turtle.html?highlight=turtle
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
https://www.youtube.com/watch?v=PTgyzZGknvg
Flappy Bird
https://www.youtube.com/watch?v=zaD6TsM6Pj8
https://github.com/wynand1004/Projects/tree/master/FlappyBird
refs
https://realpython.com/beginners-guide-python-turtle/
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!