????????翻到了以前用python写的一个画牛逼的表情包,觉得还挺有趣的,自己也一直在用,今天发出来分享给大家,大家还可以在这个基础上自己魔改一下。首先看看效果:
? ? ? ? ?下面是代码:
from turtle import *
pensize(4) # 先画手腕部分
color("gray","gray")
begin_fill()
fd(20)
right(90)
fd(78)
right(90)
fd(20)
right(90)
fd(78)
end_fill()
color("black","black") # 然后画手和手指
right(90)
penup()
fd(24)
pendown()
left(25)
circle(70,50)
circle(-10,180)
left(5)
circle(-120,20)
seth(0)
fd(50)
circle(-5,100)
fd(74)
seth(180)
fd(82)
right(90)
fd(80)
hideturtle()
penup() # 最后画手臂并填色
pensize(2)
goto(-200,-2)
showturtle()
pendown()
begin_fill()
seth(0)
fd(195)
right(90)
fd(74)
right(90)
fd(195)
right(90)
fd(74)
end_fill()
s = "牛逼!" # 最后加上灵魂
penup()
right(90)
goto(150,0)
write(s,font = ("Arial",50,"normal"))
hideturtle()
done()
|