NameError: name ‘Tk’ is not defined - 未正确导入tkinter模块
TclError: unknown option “-xxx” - 在创建组件时使用了不存在的选项
ValueError: Invalid literal for int() with base 10 - 尝试将无法转换为整数的值传递给组件
AttributeError: ‘NoneType’ object has no attribute ‘config’ - 尝试对未创建的组件进行配置
SyntaxError: invalid syntax - 拼写错误或语法错误
TypeError: ‘str’ object is not callable - 尝试将字符串作为函数调用
UnboundLocalError: local variable ‘variable’ referenced before assignment - 尝试在变量赋值之前引用变量
KeyError: ‘key’ - 尝试访问字典中不存在的键
IndentationError: unexpected indent - 缩进错误
IndexError: list index out of range - 尝试访问超出列表范围的索引