[原创] 转载请注明 http://www.cnblogs.com/nowgood/p/turtle.html
作者: NowGood
?
[TOC]
****
python2.6版本中后引入的一个简单的绘图工具,叫做海龟绘图(Turtle Graphics),turtle库是python的内部库,使用导入即可 import turtle
type(turtle)
>>> type(turtle) <class 'module'>>>> type(int) <class 'type'>>>>
先说明一下turtle绘图的基础知识: