Python Turtle
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 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/13468605.html
未经授权禁止转载,违者必究!