吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 6773|回复: 18
收起左侧

[Python 转载] Python 3.5自带的几个demo太神奇了

[复制链接]
冥界3大法王 发表于 2017-11-20 00:00
本帖最后由 冥界3大法王 于 2017-11-20 08:18 编辑

鼠标拖动的 三只小王八 。

[Python] 纯文本查看 复制代码
# colormixer

from turtle import Screen, Turtle, mainloop

class ColorTurtle(Turtle):

    def __init__(self, x, y):
        Turtle.__init__(self)
        self.shape("turtle")
        self.resizemode("user")
        self.shapesize(3,3,5)
        self.pensize(10)
        self._color = [0,0,0]
        self.x = x
        self._color[x] = y
        self.color(self._color)
        self.speed(0)
        self.left(90)
        self.pu()
        self.goto(x,0)
        self.pd()
        self.sety(1)
        self.pu()
        self.sety(y)
        self.pencolor("gray25")
        self.ondrag(self.shift)

    def shift(self, x, y):
        self.sety(max(0,min(y,1)))
        self._color[self.x] = self.ycor()
        self.fillcolor(self._color)
        setbgcolor()

def setbgcolor():
    screen.bgcolor(red.ycor(), green.ycor(), blue.ycor())

def main():
    global screen, red, green, blue
    screen = Screen()
    screen.delay(0)
    screen.setworldcoordinates(-1, -0.3, 3, 1.3)

    red = ColorTurtle(0, .5)
    green = ColorTurtle(1, .5)
    blue = ColorTurtle(2, .5)
    setbgcolor()

    writer = Turtle()
    writer.ht()
    writer.pu()
    writer.goto(1,1.15)
    writer.write("DRAG!",align="center",font=("Arial",30,("bold","italic")))
    return "EVENTLOOP"

if __name__ == "__main__":
    msg = main()
    print(msg)
    mainloop()

Snap2.jpg

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| 冥界3大法王 发表于 2017-11-20 14:14
小宇宙i 发表于 2017-11-20 10:24
我python 基础都没学完了。。。

工具不是用来学的,结合实际使用才是你学习的根本!
小宇宙i 发表于 2017-11-20 19:06
6767 发表于 2017-11-20 00:27
调色板。。。
tkinter的东西简单是简单,但是贼难看
renchaofly 发表于 2017-11-20 00:41
确实很奇葩!!!!!!
magicbird 发表于 2017-11-20 07:48 来自手机
刚开始学,还看不明白什么意思
cfanpc 发表于 2017-11-20 08:25
想写UI程序  可以么

点评

甭说UI,15天脑袋清醒的游戏都能编个出来玩玩。  发表于 2017-11-20 14:13
小宇宙i 发表于 2017-11-20 08:41
你是自学的吗?
头像被屏蔽
Linkgary 发表于 2017-11-20 10:07
提示: 作者被禁止或删除 内容自动屏蔽
小宇宙i 发表于 2017-11-20 10:24
Linkgary 发表于 2017-11-20 10:07
一起自学建个qq群?

我python 基础都没学完了。。。
头像被屏蔽
Linkgary 发表于 2017-11-20 10:30
提示: 作者被禁止或删除 内容自动屏蔽
Deteriorator 发表于 2017-11-20 13:25
cfanpc 发表于 2017-11-20 08:25
想写UI程序  可以么

写UI,就试试PyQt呗
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 01:34

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表