#打印hello,world print("hello,world")
##召唤海龟 import turtle as t
##画一个圆 t.circle(100)
##海龟箭头方向 t.left(90) or t.right(180)
#eg有趣几何图形
import turtle as t
t.circle(50)
t.left(90)
t.circle(50)
t.left(90)
t.circle(50)
t.left(90)
t.circle(50)
##循环语句 for i in range():
#eg
import turtle as t
for i in range(12):
t.right(91)
t.circle(100)
##提高速度 t.speed(0)
##改变颜色 t.color('red)
##结束运行后使图案停留 t.done()
##改变画笔粗细 t.pensize(10)
##抬笔 t.penup()
##落笔 t.pendown
#eg画奥运五环
import turtle as t t.penup() t.goto(170,0) t.pendown() t.pensize(10) t.color('red') t.circle(75) t.penup() t.goto(90,70) t.pendown() t.color('green') t.left(180) t.circle(75) t.penup() t.goto(0,0) t.pendown() t.color('black') t.left(180) t.circle(75) t.penup() t.goto(-80,70) t.pendown() t.color('yellow') t.left(180) t.circle(75) t.penup() t.goto(-170,0) t.pendown() t.color('blue') t.left(180) t.circle(75) t.done()