51Testing软件测试论坛
标题:
python技巧分享:画一个爱心
[打印本页]
作者:
lsekfe
时间:
2023-3-6 13:18
标题:
python技巧分享:画一个爱心
1 问题
如何使用python画一个爱心。
2 方法
桌面新建一个文本文档,文件后缀改为.py,输入相关代码ctrl+s保存,关闭,最后双击运行。
from turtle import *
def curvemove():
for i in range(200):
right(1)
forward(1)
color('red','pink')
begin_fill()
left(140)
forward(111.65)
curvemove()
left(120)
curvemove()
forward(111.65)
end_fill()
done()
3 结语
针对此问题,解决过程中我们学会了画图,更感受到了python的乐趣,未来我们希望能学到更多有趣的代码,提高对python的兴趣。
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2