绘图模块(turtle) 注意:画笔位于绘图窗口中心
from turtle import *
setup(800,900) #窗口大小
pensize(2) #画笔的大小(宽度)
speed(0) #画笔移动速度(0-10之间)
color('red') #画笔颜色
#随机颜色产生
from random import *
colormode(255) #使用rgb颜色模式
clor(randint(0,255),randint(0,255),randint(0,255))
penup() #提起画笔
pendown() #放下画笔
forward(200) #向前移动200
backward(200) #向后移动200
goto(20,40) #移动到(20,40)的位置
right(90) #向右转动90度
left(90) #向左转动90度
seth(90) #转动到90度方向
begin_fill() #开始填充
end_fill() #填充结束
circle(20,360,steps=3) #半径20,角度360,步长3的封闭图形
write('文字部分',font=('宋体',22)) #显示文字部分,设置其字体大小
|