Python turtle艺术画赏析(2)

down() # 放下笔,让乌龟画画
while x < 120: # 当x的值小于120时,
                #连续这样做:
    fd(200)   
    rt(61)
    fd(200)
    rt(61)
    fd(200)
    rt(61)
    fd(200)
    rt(61)
    fd(200)
    rt(61)
    fd(200)
    rt(61)

rt(11.1111)
    x = x+1 # #在x的值上加1,
            # 所以每次循环后它都接近120

exitonclick() # 当您单击时,turtle退出。

效果如下:

Python turtle艺术画赏析

Python turtle艺术画赏析相关完整代码可从以下信息的得到下载:

------------------------------------------分割线------------------------------------------

全部文件在Linux公社1号FTP服务器

FTP地址:ftp://ftp1.linuxidc.com

用户名:ftp1.linuxidc.com

密码:

在 2019年LinuxIDC.com/4月/Python turtle艺术画赏析/

下载方法见

------------------------------------------分割线------------------------------------------ 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/960f8b7a535af09fee1de227ccb505bb.html