python实例代码 python设置颜色的例子

发布时间:2020-10-07编辑:脚本学堂
本文分享下,一个python设置颜色的代码实例,有需要的朋友参考学习下。

python设置颜色的实例代码,如下:

#!/bin/python
#edit by www.jb200.com

from Tkinter import *
from tkColorChooser import askcolor

def setBgColor():
    (triple, hexstr) = askcolor()
    if hexstr:
        print hexstr
        push.config(bg=hexstr)

root = Tk()
push = Button(root, text='Set Background Color', command=setBgColor)
push.config(height=3, font=('times', 20, 'bold'))
push.pack(expand=YES, fill=BOTH)
root.mainloop()

效果图,如下:
python设置颜色