在学习到Python的turtle的时候突发奇想,画了一个网易云logo,分享给大家,欢迎大家在下方留言。

#wangyiyun
import turtle as t
t.pensize(6)
t.pencolor ("red")
t.left(135)
t.fd(5)
t.circle(5,180)
t.right(40)
t.fd(36)
t.right(-90)
t.fd(-4)
t.circle(12,-200)
t.left(30)
t.circle(15,-70)
t.circle(18,-120)
t.left(10)
t.circle(21,-40)
t.left(10)
t.circle(23,-40)
t.left(-10)

t.circle(25,-75)


分享一个用turtle画的网易云logo

相关文章:

  • 2021-10-24
  • 2022-02-13
  • 2022-12-23
  • 2021-11-30
  • 2021-12-07
  • 2021-06-16
  • 2021-12-08
  • 2022-02-08
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2022-12-23
  • 2021-09-15
  • 2021-07-19
  • 2021-12-06
相关资源
相似解决方案