新手学习圣诞树
本帖最后由 787821 于 2018-12-29 00:55 编辑其他地方看到的,手打一遍,去理解里面的逻辑,见笑了~!
import turtle
screen = turtle.Screen()
screen.setup(800.600)
circle = turtle.Turtle()
circle.shape('circle')
circle.color('red')
circle.speed('fastest')
circle.up()
square = turtle.Turtle()
square.shape('square')
square.color('green')
square.speed('fastest')
square.up()
circle.goto(0, 280)
circle.stamp()
k = 0
for i in range(1, 17):
y = 30 * i
for j in range(i - k):
x = 30 * j
square.goto(x, -y + 280)
square.stamp()
square.goto(-x, -y + 280)
square.stamp()
if i % 4 == 0:
x = 30 * (j + 1)
circle.color('red')
circle.goto(-x, -y + 280)
circle.stamp()
circle.goto(x, -y + 280)
circle.stamp()
k += 2
if i % 4 == 3:
x = 30 * (j + 1)
circle.color('yellow')
circle.goto(-x, -y + 280)
circle.stamp()
circle.goto(x, -y + 280)
circle.stamp()
square.color('brown')
for i in range(17, 20):
y = 30 * i
for j in range(3):
x = 30 * j
square.goto(x, -y + 280)
square.stamp()
square.goto(-x, -y + 280)
square.stamp()
turtle.exitonclick() 挺好看的,这是什么语言啊? 臭味香头 发表于 2018-12-29 08:09
挺好看的,这是什么语言啊?
你就不会自己看吗,明明就表明了是python,评论就别灌水啦你 加油!!!不错! 这个确实挺好看的 很好看耶 好看好看,支持一波 还有打五角星的 ..
后来发现 这个东西 其实很无聊啊 ...
好看好看,支持一波
加油努力有钱途~!{:1_927:}
页:
[1]
2