(Python3)-可自動更新驗証碼的方法

(Python3)-可自動更新驗証碼的方法

(Python3)-可自動更新驗証碼的方法  

 

 

# -*- coding: utf-8 -*-

from tkinter import *
import random
import string

root = Tk()
root.title("可自動更新驗証碼")
root.geometry("350x200+600+300")
root.resizable(0, 0)

def code():
    num = string.digits
    num_digits = ""
    for i in range(4):
        num1 = random.choice(num)
        num_digits = num_digits + num1
    return num_digits

f1 = Frame(root)
f1.pack()
v = StringVar()
v.set(code())

def callback(event):
    print(event.x, event.y)
    v.set(code())

label = Label(f1, cursor="hand2", textvariable=v, width=10, height=2, bg="LightSeaGreen", font="bold")
label.bind("<Button-1>", callback)
label.grid(row=0, column=0, pady=30)

def refresh():
    v.set(code())

Button(f1, text="刷新", command=refresh, cursor="hand2").grid(row=0, column=1, padx=10)

root.mainloop()

 

免責聲明:

1.本影像檔案皆從網上搜集轉載,不承擔任何技術及版權問題。

2.如有下載連結僅供寬頻測試研究用途,請下載後在24小時內刪除,請勿用於商業。

3.若侵犯了您的合法權益,請來信通知我們,我們會及時刪除,給您帶來的不便,深表歉意。



1 thought on “(Python3)-可自動更新驗証碼的方法”

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *