用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - python代码库

点击换色,画圆

2021-08-26 作者: Adam举报

[python]代码库

from turtle import *
ht()
tracer(0)
x1=-400   
y1=-400   
宽=200
高=200

colorall=['red','orange','yellow','green','cyan','blue','purple']
n=0

def brick(mycolor):
    fillcolor(mycolor)
    pu()
    goto(x1,y1)
    pd()
    begin_fill()
    for i in range(2):
        fd(宽)
        lt(90)
        fd(高)
        lt(90)
    end_fill()
    update()

brick(colorall[n]) 
def draw(x,y):
    if x>x1 and x<x1+宽 and y>y1 and y<y1+高:
        global n
        n=n+1
        if n>=len(colorall):
            n=0
        brick(colorall[n])
    else:
        pu()
        goto(x,y)
        pd()
        dot(20,colorall[n])

onscreenclick(draw)
done()


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...