脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python实现海螺图片的方法示例

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

2021-06-25 00:42Mixtual悦岚 Python

这篇文章主要介绍了python实现海螺图片的方法示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

本文介绍了如何用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

延伸 · 阅读

精彩推荐