lsekfe 发表于 2023-3-6 13:18:27

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()


http://www.51testing.com/attachments/2023/03/15326880_202303031429071MS7s.png
  3 结语
  针对此问题,解决过程中我们学会了画图,更感受到了python的乐趣,未来我们希望能学到更多有趣的代码,提高对python的兴趣。

页: [1]
查看完整版本: python技巧分享:画一个爱心