Python标准库-turtle

昨天看到了turtle。
Python官方文档中介绍的太详细了。
https://docs.python.org/2/library/turtle.html

结果根本没有时间和精力去研究每一个库。
这种浅尝辄止、不求甚解的学习不是很好吧
每天的学习状态还不好,我的天啊!
静下心来在好好学习一段时间啊啊啊啊啊
接下来就到了进阶版的Python了,正则表达式,网页信息提取,网站开发

>>> import turtle
>>> t = turtle.Pen()
>>> for i in range(0,8):
    t.forward(50)  # 向前移动50单位
    t.left(45)  # 逆时针旋转45°  ,都是光标的移动

Python标准库-turtle_第1张图片

>>> t.reset()  #重置
>>> t.circle(50) #画圆

Python标准库-turtle_第2张图片

>>> t.reset()
>>> t.position()
(0.00,0.00)
>>> t.circle(50)
>>> t.goto(0,100)
>>> t.position()
(0.00,100.00)
>>> t.circle(25)
>>> t.setx(-100)
>>> t.sety(0)

Python标准库-turtle_第3张图片

>>> t.color(0,0,1)  # blue ,RGB system
>>> t.color(0,1,0)  # green
>>> t.color(1,0,0)  # red
>>> t.color(0,0,0)  # black

github上的一个FlappyBird游戏,用到了turtle。
github地址:https://github.com/tjwei/Flappy-Turtle.git

在命令行中运行程序,空格键开始游戏。

Python标准库-turtle_第4张图片

你可能感兴趣的:(学习,笔记)