鱼C论坛

 找回密码
 立即注册
查看: 2024|回复: 1

求助:为啥会报错

[复制链接]
发表于 2020-8-26 08:27:46 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import tkinter as tk
import crcmod.predefined


def get_data():
    try:
        calc()
    except ValueError:
        root1 = tk.Tk()
        root1.title("提示")
        label2 = tk.Label(root1, text="请输入正确的十六进制数据\n例如a->0a")
        label2.pack()
        button3 = tk.Button(root1, text="确定", command=root1.destroy)
        button3.pack()
        return False


def calc():
    arr = entry1.get()
    print("计算输入框内的值得校验和")
    crc8 = crcmod.predefined.Crc('crc-8')
    crc8.update(bytes().fromhex(arr))
    data = hex(crc8.crcValue)
    print(data)
    v.set(data)
    return True


def clean():
    print("清除输入框内及生成的校验和")
    entry1.delete(0, 'end')
    entry2.delete(0, 'end')


root = tk.Tk()
root.title("CRC校验和工具")
root.geometry('550x150')

label1 = tk.Label(root, text="请输入需要校验的数据:").grid(row=0, sticky='w', padx=10, pady=5)

entry1 = tk.Entry(root)
entry1.place(x=10, y=30, width=500, height=35)
entry1.insert(0, "默认文本...")

v = tk.StringVar()
testCMD = root.register(get_data)
entry2 = tk.Entry(root, textvariable=v, validate='all', validatecommand=(testCMD, '%P'))
entry2.place(x=75, y=95,  width=50)

button1 = tk.Button(root, text="计算", command=get_data).place(x=10, y=90)

button2 = tk.Button(root, text="清除", command=clean).place(x=200, y=90)

root.mainloop()
为啥计算框内输入内容后,点击计算第一次会报错
报错如下:
Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Users\Administrator\AppData\Local\Programs\Python\Python38-32\lib\tkinter\__init__.py", line 1883, in __call__
    return self.func(*args)
TypeError: get_data() takes 0 positional arguments but 1 was given
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-26 08:44:57 | 显示全部楼层
我这里没问题啊

                               
登录/注册后可看大图
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-19 03:18

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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