tkinter 制作的生成随机颜色文字的小程序
刚学习 Tkinter ,做了一个生成随机颜色文字的小程序。代码:
# 导入 tkinter 和 random
import tkinter as tk
import random as r
# rgb 颜色字符串
COLOR = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'a', 'b', 'c', 'd', 'e', 'f']
def change_color():
color_string = '#'
for i in range(6):
color_string += r.choice(COLOR) # 生成随机rgb颜色
# 显示 Label 文字
text = tk.Label(root, fg=color_string, font=("楷体", 22), text="我爱 FishC!")
text.pack(pady=2)
root = tk.Tk()
# 按钮
btn = tk.Button(root, fg="#963963", text="生成随机颜色的 Label",
command=change_color, font=("楷体", 15))
btn.pack()
tk.mainloop() 考古 考古学家前来考古{:10_256:}
页:
[1]