python实现海螺图片的方法示例

时间:2022-11-02 12:40:22

本文介绍了如何用python实现海螺图片,感兴趣的可以参考一下,具体代码如下:

python实现海螺图片的方法示例

代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import turtle
import time
 
t = turtle.turtle()
t.speed(0)
t.color('red','blue')
t.begin_fill()
for i in range(90):
  t.circle(150 - i)
  t.left(4)
t.end_fill()
 
t.up()
t.fd(280)
t.right(90)
t.fd(200)
t.down()
t.color('green')
for i in range(4):
  t.circle(80)
 
  for i in range(9):
    t.circle(20)
    t.left(40)
  t.left(90)
 
 
time.sleep(16)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://segmentfault.com/a/1190000019145884