python学习笔记2--用turtle简单绘图

Turtle是python内置的图形化模块,可以用来绘制线条、圆、文本等图形。

首先要在ubuntu终端中安装Tkinter,执行命令sudo apt-get install python-tk 即可,否则会报错。安装完之后就可以在终端里执行turtle绘制或则在eclipse环境中执行。(附:由于ubuntu12.04自带的python版本是2.7.3,所以此时利用终端安装的python-tk是与该python版本对应的,所以在python2.7.3的解释器下没有问题,而在我另装的python3.2.3的解释器下会报ImportError: No module named _tkinter,此时我的做法是更换为2.7的解释器,不过我想应该可以直接下载python3.2.3对应的python-tk版本安装)


根据书上写了个小程序

#coding=utf-8
import time
import turtle             #import turtle module  

turtle.showturtle()       #show turtle graph
turtle.write("welcome to python测试中文")    
turtle.forward(100)       #箭头向右延长100
time.sleep(3)             #休眠3秒

turtle.right(90)          #方向顺时针转90度
turtle.color("red")       #颜色设为红色
turtle.forward(50)        #长度50
time.sleep(3)

turtle.right(90)          #方向顺时针转90度
turtle.color("green")     #颜色设为绿色
turtle.forward(100)       #长度100
time.sleep(3)

turtle.right(45)          #方向顺时针转45度
turtle.forward(80)        #长度80
time.sleep(3)
turtle.done()

运行结果为:

python学习笔记2--用turtle简单绘图_第1张图片


turtle的坐标轴是以中心点为原点,坐标轴与x,y轴类似,右为x轴正轴,上为y轴正轴。turtle中还有几个初级的命令,先记下来,后面学到再继续补充。

turtle.goto(x, y) :将箭头移到某一指定坐标

turtle.penup() :提起笔,用于另起一个地方绘制时用,与pendown()配对使用

turtle.pendown() :放下笔,移到指定点后继续绘制

turtle.circle(r) : 在指定点以r为半径画圆


要注意的是,如果不在头上写入#coding=utf-8 或 #coding=gbk,在程序中如果有中文的时候会弹出类似下面的符号错误。

SyntaxError: Non-ASCII character '\xe6' in file /home/lemon/workspace/PythonProgramming/src/01_Introduction.py on line 6, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

另外,turtle的函数在import之后还是无法提示出来,而且会报错,undefined variable from import: turtle,虽然运行没有问题,但是看的很难受,在Window->Preference->Pydev->Editor->Code Analysis->Undefined选项中的Undefined variable from import设为ignore可以消除显示的红叉叉。


好啦,turtle的入门... 后面继续吧

你可能感兴趣的:(python)