用 turtle 海龟作图库来画爱心

时间:2022-11-24 阅读:114 评论:0 作者:wangxiao

import turtle as t
t.color('red')
t.setheading(50)
t.begin_fill()
t.circle(-100, 170)
t.circle(-300, 40)
t.right(38)
t.circle(-300, 40)
t.circle(-100, 170)
t.end_fill()
t.done()


本文链接: http://shayuweb.com/?id=10 转载请注明出处!