python入门—有趣的python板块—海龟绘图

python入门—有趣的python板块—海龟绘图

  • 操作

操作

turtle.pensize(num)
turtle.seth(angle)
-设定填充色:fillecolor(r, g, b)
-开始填充:begin_fill()
-结束填充:end_fill()
turtle.setup()函数
该函数各参数关系如图所示,其具体定义为:turtle.setup(width,height,startx,starty)
作用:设置主窗体的大小和位置。
width:窗口宽度,如果值是整数,表示像素值;如果值是小数,表示窗口宽度与屏幕的比例。
height:窗口高度,如果值是整数,表示像素值;如果值是小数,表示窗口高度与屏幕的比例。
startx:窗口左侧与屏幕左侧的像素距离,如果值是None,窗口位于屏幕水平中央。
starty:窗口顶部与屏幕顶部的像素距离,如果值是None,窗口位于屏幕垂直中央。

python入门—有趣的python板块—海龟绘图_第1张图片
代码

import turtle
t=turtle.Pen()
t.color('red')
for x in range(360):
    t.color('black')
    if (x % 1 == 0):
        t.color('red')
    if (x % 2 == 0):
        t.color('coral')
    if (x % 3 == 0):
        t.color('darkorange')
    if (x % 4 == 0):
        t.color('gold')
    if (x % 5 == 0):
        t.color('paleturquoise')
    if (x % 6 == 0):
        t.color('skyblue')
    if (x % 7 == 0):
        t.color('plum')
    if (x % 8 == 0):
        t.color('hotpink')
    if (x % 9 == 0):
        t.color('pink')
    t.forward(x)
    t.left(59)
    #left()参数更改图形不同

python入门—有趣的python板块—海龟绘图_第2张图片
代码
from turtle import *
def curvemove():
for i in range(200):
right(1)
forward(1)
setup(600,600,400,400)
hideturtle()
pencolor(‘black’)
fillcolor(“red”)
pensize(2)
begin_fill()
left(140)
forward(111.65)
curvemove()
left(120)
curvemove()
forward(111.65)
end_fill()
penup()
goto(-27, 85)
pendown()
done()

海龟绘图部分操作

import turtle
turtle.showturtle()
turtle.write("黄涛")
turtle.circle(99) 参数为半径
turtle.forward(300)
turtle.color("red")
turtle.left(90)
turtle.forward(300)
turtle.goto(0,50)
turtle.goto(0,0)
turtle.penup()
turtle.goto(50,50)
turtle.pendown()
turtle.circle(100)
//turtle.width(10)
import turtle
t = turtle.Pen()
my_colors = ("red","green","yellow","black")
t.width(4)#画笔宽度
t.speed(1)#画笔速度 0最大
for i in range(10):
    t.penup()
    t.goto(0,-i*10)
    t.pendown()
    t.color(my_colors[i%len(my_colors)])
    t.circle(15+i*10)	#100,200,300, 400,, 500
turtle.done()	#程序执行完,窗口仍然在

你可能感兴趣的:(python入门)