wellons 发表于 2020-5-10 23:26:41

{:10_257:}

wuqramy 发表于 2020-5-12 07:29:49

这个不会呀呀呀呀!

Tip0 发表于 2020-5-12 07:35:11

....还可以画画的吗哈哈

wuqramy 发表于 2020-5-12 07:49:28

来个tkinter伪装的

xiaosi4081 发表于 2020-5-12 09:57:16

本帖最后由 xiaosi4081 于 2020-5-12 09:59 编辑

import turtle
turtle.penup()
turtle.goto(0,-150)
turtle.pensize(10)
turtle.setup(650,650,650,20)
turtle.pendown()
turtle.color("yellow","yellow")
turtle.begin_fill()
turtle.circle(200)
turtle.end_fill()
turtle.penup()
turtle.color("brown")
turtle.goto(-90,140)
turtle.pendown()
turtle.forward(50)
turtle.penup()
turtle.goto(50,140)
turtle.pendown()
turtle.forward(50)
turtle.penup()
turtle.goto(-100,-10)
turtle.right(60)
turtle.pendown()
turtle.circle(120,120)

nizitao 发表于 2020-5-12 11:12:50

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()

1556134029 发表于 2020-5-12 11:28:38

你终于要开学了吗老王

宝迩鸭 发表于 2020-5-12 11:30:53

路过

宝迩鸭 发表于 2020-5-12 11:38:05

乘号 发表于 2020-5-10 08:13
赠送一个

我咋复制出来输出不了,显示好多错误呢

dudaguo 发表于 2020-5-12 14:20:29

我这里又快开始放假了,吉林{:5_111:}

lijiachen 发表于 2020-5-12 17:01:17

没错,我又来了(蹭鱼币)
{:10_254:}

Otaku007 发表于 2020-5-12 18:27:54

{:10_254:}{:10_254:}{:10_254:}厉害啊

乘号 发表于 2020-5-12 21:30:59

嘿嘿嘿
我出题
行不{:10_254:}

乘号 发表于 2020-5-12 21:32:22

题我只会出turtle的。。。@WangJS

Hardyaka 发表于 2020-5-13 09:25:09

看一下下

1469396970 发表于 2020-5-13 09:51:30

这个,还没学到,真不会{:10_250:}

qiangqiang1 发表于 2020-5-13 14:44:50

from turtle import*

def move(x, y):
    penup()
    goto(x, y)
    pendown()

move(0, -200)
penup()
pencolor('yellow')
fillcolor('yellow')
pendown()
begin_fill()
circle(200)
end_fill()

#=======眼睛========
move(-120, 80)
pencolor('black')
pensize(5)
seth(90)
circle(-40,180)
move(40, 80)
seth(90)
circle(-40,180)

#=======嘴=========
move(-120, -25)
seth(90)
fillcolor('white')
begin_fill()
goto(120, -25)
circle(120,-180)
end_fill()
move(-80, -25)
goto(-80, -108)
move(-40, -25)
goto(-40, -132)
move(0, -25)
goto(0, -145)
move(40, -25)
goto(40, -132)
move(80, -25)
goto(80, -108)

#=======眉毛========
move(-190, 190)
seth(90)
circle(-30, 150)
move(190, 190)
seth(90)
circle(30, 150)



哈哈,博君一笑

wrw5192 发表于 2020-5-14 10:36:58

我是后排捧人场的。才开始学习,能力不够{:10_254:}

lixiangyv 发表于 2020-5-14 12:13:59

昨天我就返校了

wuqramy 发表于 2020-5-14 12:32:06

乘号 发表于 2020-5-12 21:32
题我只会出turtle的。。。@WangJS

反对!
页: 1 [2] 3
查看完整版本: 小白Python练习册(19)【招人】