一只程序媛呀 发表于 2021-9-24 11:03:42

好兄弟问我有什么炫酷的表白方式?安排!「附表白源码」

导语



哈喽!我是木木子,又到了本日更新时候!


https://p3.toutiaoimg.com/large/pgc-image/23138bd1b5a24da3895bd63b98c99bdc



我们来看看写什么呢?


小编有个好兄弟近来在追妹子,跟妹子打得火热!就差临门一脚了,这一jio我帮助补上去了!


他问有没有什么酷炫的表白方式,可以给人心动的赶jio,表白的方式有许多种


本日木木子来教大家一个之前很火的小人画爱心表白代码!


https://p5.toutiaoimg.com/large/pgc-image/aecb1a49c6bc4369b4ed9aada86b756f





正文



Turtle库是python的基础绘图库,这个库使用起来很方便,了解基础的一些信息之后学起来很快是小编绘图的首选!


起首绘制爱心



import turtleimport time# 画心形圆弧def hart_arc():    for i in range(200):      turtle.right(1)      turtle.forward(2)def move_pen_position(x, y):    turtle.hideturtle()   # 隐藏画笔(先)    turtle.up()   # 提笔    turtle.goto(x, y)    # 移动画笔到指定起始坐标(窗口中心为0,0)    turtle.down()   # 下笔    turtle.showturtle()   # 显示画笔    # 初始化turtle.setup(width=800, height=500)   # 窗口(画布)大小turtle.color('red', 'pink')   # 画笔颜色turtle.pensize(5)       # 画笔粗细turtle.speed(1)   # 描绘速率# 初始化画笔起始坐标move_pen_position(x=0,y=-180)   # 移动画笔位置turtle.left(140)    # 向左旋转140度turtle.begin_fill()   # 标记背景填充位置# 画心形直线( 左下方 )turtle.forward(224)    # 向前移动画笔,长度为224# 画爱心圆弧hart_arc()      # 左侧圆弧turtle.left(120)    # 调整画笔角度hart_arc()      # 右侧圆弧# 画心形直线( 右下方 )turtle.forward(224)turtle.end_fill()       # 标记背景填充结束位置# 点击窗口关闭程序window = turtle.Screen()window.exitonclick()



结果如下:


https://p3.toutiaoimg.com/large/pgc-image/03a8e414e668432bbe6af56d80e690f6





其次绘制小人儿







import turtle as tfrom time import sleepdef go_to(x, y):    t.up()    t.goto(x, y)    t.down()def head(x, y, r):    go_to(x, y)    t.speed(20)    t.circle(r)    leg(x, y)def leg(x, y):    t.right(90)    t.forward(180)    t.right(30)    t.forward(100)    t.left(120)    go_to(x, y - 180)    t.forward(100)    t.right(120)    t.forward(100)    t.left(120)    hand(x, y)def hand(x, y):    go_to(x, y - 60)    t.forward(100)    t.left(60)    t.forward(100)    go_to(x, y - 90)    t.right(60)    t.forward(100)    t.right(60)    t.forward(100)    t.left(60)    eye(x, y)def eye(x, y):    go_to(x - 50, y + 130)    t.right(90)    t.forward(50)    go_to(x + 40, y + 130)    t.forward(50)    t.left(90)def big_Circle(size):    t.speed(20)    for i in range(150):      t.forward(size)      t.right(0.3)def line(size):    t.speed(20)    t.forward(51 * size)def small_Circle(size):    t.speed(20)    for i in range(210):      t.forward(size)      t.right(0.786)def heart(x, y, size):    go_to(x, y)    t.left(150)    t.begin_fill()    line(size)    big_Circle(size)    small_Circle(size)    t.left(120)    small_Circle(size)    big_Circle(size)    line(size)    t.end_fill()结果如下:





https://p9.toutiaoimg.com/large/pgc-image/4bd866fc18d249b3835c3b3f31123723




最后添加文字


t.write("To: 你知道我的缺点是什么吗?", move=True, align="left", font=("楷体", 20, "normal"))



结果如下:


https://p9.toutiaoimg.com/large/pgc-image/bbcaa45da24c40779bb5d15688938182





https://p6.toutiaoimg.com/large/pgc-image/fa94a00b98f64617907630f8a1dc3fdd



总结



好啦!这款简单的表白源码就完成啦!喜欢的点点关注哦~


如需完整的项目源码+全部的素材老例子源码基地见:#私信小编06#即可免费获取打包的源码!


记得三连哦~mua 你们的支持是我最大的动力!


https://p26.toutiaoimg.com/large/pgc-image/32298ea32c9a484a9dd5e58dcb1d2274



【1】中秋回家,带什么礼物更让家人欢心?竟是......


【2】女神约我去赏月!我一看中秋节可能会下雨,立马用Python写了款赏月工具!


【3】没想到,用Python竟能做巧克力月饼![附源码]


【4】下雨天:女神说晚上有星星就跟我约会?Python带你绘制满天星河!
页: [1]
查看完整版本: 好兄弟问我有什么炫酷的表白方式?安排!「附表白源码」