gay检测器
网址 点我跳转到gay指数检测器
thumbnail
turtle库——案例13:画小猪佩奇
# 导入绘图库 import turtle as t # 画布与色调设定 t.title("小猪佩奇") t.speed(5) t.pensize(4) t.hideturtle() t.colormode(255) t.color((255,155,192),"pink") t.setup(840,500) t.speed(10) # 绘制鼻子 …