Flask接口签名sign原理与实例代码浅析
444
2022-09-07
【表白系列】打扰一下,我有很多话要告诉你:“因为喜欢,可迎万难”(内含多份源码)
导语
“ 全世界只有不到0.1%的人关注了木木子
你真是个特别的人 ——顾木子吖 ”
☀☀☀☀☀☀☀☀
每天早上九点
请记得打开手机,查收我的礼物????
哈喽哈喽~我是木木子——
之前的表白合集出了效果都挺好的啦~看来大家都喜欢这些简单的小案例。
绘制出来都超好看的Turtle界面啦,今天继续上一期的系列。
出一期全是爱心的文章满足大家的要求啦~
正文
“ 总 会 有 人 给 你一一温࿐暖࿐的࿐光࿐。”
一、低配版
1)附部分代码
二、进阶版
三、高级版
1)附部分代码
import turtle as timport math as mtif __name__ == "__main__": t.screensize(800,600,'white') t.pensize(10) t.speed(10) #爱心1 t.color('black','pink') t.begin_fill() for i in range(-90,90,5): x=mt.cos(mt.radians(i)) y=float(pow(mt.cos(mt.radians(i)),2/3))+float(mt.sin(mt.radians(i))) t.penup() # print(int(x*50)+10,int(y*50)+10) t.goto(int(x*50)+50,int(y*50)+30) t.pendown() t.forward(1) t.penup() t.goto(-int(x*50)+50,int(y*50)+30) t.pendown() t.forward(1) t.penup() t.end_fill() #爱心2 t.goto(0,10) t.penup() t.begin_fill() for i in range(0,360,5): r=60*(1-mt.sin(mt.radians(i))) t.penup() t.left(5) t.forward(r) t.pendown() t.forward(1) t.penup() t.backward(r+1) t.pendown() t.end_fill() #L t.penup() t.goto(-200,0) t.left(90) t.begin_fill() t.pendown() t.forward(100) t.right(90) t.forward(20) t.right(90) t.forward(80) t.left(90) t.forward(40) t.right(90) t.forward(20) t.right(90) t.forward(60) t.end_fill() #o t.penup() t.goto(-80,0) t.pendown() t.begin_fill() t.circle(-50) t.end_fill() t.penup() t.color('pink','black') t.begin_fill() t.goto(-80,20) t.pendown() t.circle(-30) t.end_fill() t.color('black','pink') #E t.penup() t.goto(120, 0) t.right(180) t.left(90) t.begin_fill() t.pendown() t.forward(100)#上 t.right(90) t.forward(60)#横 t.right(90) t.forward(20)#竖 t.right(90) t.forward(40)#横 t.left(90) t.forward(20)#竖 t.left(90) t.forward(40)#横 t.right(90) t.forward(20) t.right(90) t.forward(40) t.left(90) t.forward(20) t.left(90) t.forward(40) t.right(90) t.forward(20) t.right(90) t.forward(60) t.end_fill()
四、衍生版
总结
好啦好啦~爱心合集????写到这里就完美结束——大家有喜欢的直接找我拿源码的啦
“ 窗户里的风景~
午后的阳光最令人心动 ꀿªᵖᵖᵞ ꔛ♡ “
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~