小白Python练习册(19)【招人】
本帖最后由 WangJS 于 2020-5-10 09:16 编辑先要说一件大事!!!
我们学生党要开学了
帖子要没人更新了{:10_266:}
所以……
又要向外招人了{:10_250:}
要求:
有QQ或者微信
技术水平:中等
题目要求:可以有些提高,但不能太难
题目数量:能保证日更就行
今天可能有些提高
我们要用turtle画图
就画下面这个丑不拉几的表情!
回复查看参考答案啊:
**** Hidden Message *****
有要加入我们的!!!
一定要在下方评论区说出来啊!!!{:10_254:}
喜欢!评分!订阅!
{:5_109:} 专辑没加都没人看见啊{:10_266:} import turtle as t
t.width(5)
t.hideturtle()
def move(x,y):
t.penup()
t.goto(x,y)
t.pendown()
move(0,-200)
t.pencolor("yellow")
t.fillcolor('yellow')
t.begin_fill()
t.circle(200)
t.end_fill()
t.pencolor("brown")
t.penup()
t.goto(0,-140)
t.pendown()
t.circle(120,60)
t.left(180)
t.circle(-120,120)
t.seth(0)
move(-120,80)
t.seth(0)
t.forward(95)
t.penup()
t.forward(50)
t.pendown()
t.forward(95)
t.done() ……我还没开学,
如果 @zltzlt 来的话,也许会变成另一个 每日一题 …… 你参考答案没设回复可见。。。 赠送一个
from turtle import*
setup(600,600,200,200)
#脸
penup()
goto(-210,0)
seth(-90)
pendown()
pencolor('orange')
pensize(4)
begin_fill()
circle(210,360)
fillcolor('yellow')
end_fill()
pencolor('black')
#画嘴巴
pensize(5)
penup()
goto(-150,-30)
pendown()
seth(-90)
circle(150,180)
#左眼眶
penup()
pensize(4)
goto(-180,90)
pendown()
seth(40)
begin_fill()
circle(-120,80)
penup()
goto(-180,90)
seth(-130)
pendown()
circle(15,110)
seth(40)
circle(-106,83)
seth(30)
circle(18,105)
fillcolor('white')
end_fill()
#右眼眶
penup()
goto(20,90)
pendown()
seth(40)
begin_fill()
circle(-120,80)
penup()
goto(20,90)
pendown()
seth(-130)
circle(15,110)
seth(40)
circle(-106,83)
seth(30)
circle(18,105)
fillcolor('white')
end_fill()
#画眼珠
pensize(2)
penup()
goto(50,95)
pendown()
begin_fill()
circle(8,360)
fillcolor('black')
end_fill()
penup()
goto(-150,95)
pendown()
begin_fill()
circle(8,360)
fillcolor('black')
end_fill()
#画腮红
pensize(1)
pencolor('pink')
begin_fill()
penup()
goto(-160,50)
pendown()
seth(-90)
for i in range(2):
for j in range(10):
forward(j)
left(9)
for j in range(10,0,-1):
forward(j)
left(9)
fillcolor('pink')
end_fill()
pensize(1)
pencolor('pink')
begin_fill()
penup()
goto(40,50)
pendown()
seth(-90)
for i in range(2):
for j in range(10):
forward(j)
left(9)
for j in range(10,0,-1):
forward(j)
left(9)
fillcolor('pink')
end_fill()
hideturtle() 开学了都没时间上论坛辽 我想加入 隔壁繁星吖 发表于 2020-5-10 08:16
开学了都没时间上论坛辽
我也是 隔壁繁星吖 发表于 2020-5-10 08:16
开学了都没时间上论坛辽
放假了,过来看看 我特别想加入 我可以试试{:10_256:}反正闲着也是闲着 你这根本不是回复可见,是明摆着的…… 我也想试试嘿嘿{:10_254:} 看看 有点难啊 {:10_256:} 我也想加入
行不行呀 import turtle as p
p.screensize()
p.speed(5)
p.pensize(10)
p.color("yellow","yellow")
p.begin_fill()
p.circle(100)
p.end_fill()
p.penup()
p.goto(-60,140)
p.pendown()
p.pensize(5)
p.pencolor("brown")
p.forward(30)
p.penup()
p.goto(60,140)
p.pendown()
p.pensize(5)
p.pencolor("brown")
p.forward(-30)
p.penup()
p.goto(45,60)
p.pendown()
p.right(90)
p.circle(-50,180)