在Python中使用海龟打印螺旋图
先决条件:用Python进行海龟编程
螺旋计是一个非常有趣的几何图形,通常与两个轴对称。它产生技术上称为下摆线和外摆线的各种数学轮盘赌曲线。在这里,我们使用了一系列颜色来绘制圆圈,您可以根据您的颜色选择使用您的组合。
下面是实现。
Python3
# Import the turtle library for
# drawing the required curve
import turtle as tt
# Set the background color as black,
# pensize as 2 and speed of drawing
# curve as 10(relative)
tt.bgcolor('black')
tt.pensize(2)
tt.speed(10)
# Iterate six times in total
for i in range(6):
# Choose your color combination
for color in ('red', 'magenta', 'blue',
'cyan', 'green', 'white',
'yellow'):
tt.color(color)
# Draw a circle of chosen size, 100 here
tt.circle(100)
# Move 10 pixels left to draw another circle
tt.left(10)
# Hide the cursor(or turtle) which drew the circle
tt.hideturtle()
输出: