1 Python的海龟作图系统turtlemodule
Python内置,随时可用,以LOGO语言的创意为基础
其意象为模拟海龟在沙滩上爬行而留下的足迹
爬行:forward(n); backward(n)
转向:left(a); right(a)
抬笔放笔:penup(); pendown()
笔属性:pensize(s); pencolor©
隐藏画笔:hideturtle()
import turtle
t=turtle.Turtle()
#作图开始
t.forward(100)
#作图结束
turtle.done()
2 海龟作图1:画正方形
import turtle
t=turtle.Turtle()
for i in range(4):
t.forward(100)
t.right(