如何用Python画一个圣诞树呢?
最简单:
-
height = 5
-
-
stars = 1
-
for i in range(height):
-
print((' ' * (height - i)) + ('*' * stars))
-
stars += 2
-
print((' ' * height) + '|')
效果:
哈哈哈哈,总有一种骗了大家的感觉。
其实本文是想介绍Turtle库来画圣诞树。
-
import turtle
-
-
screen = turtle.Screen()
-
screen.setup(375, 700)
-
-
circle = turtle.Turtle()
-
circle.shape('circle')
-
circle.color('red')
-
circle.speed('fastest')
-
circle.up()
-
<