python入门—有趣的python板块—海龟绘图
程序员文章站
2024-01-15 15:39:10
...
python入门—有趣的python板块—海龟绘图
代码
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()参数更改图形不同
海龟绘图部分操作
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)
上一篇: docker flannel网络实验
下一篇: Twitter特别适合数据挖掘