AttributeError: 'myTK' object has no attribute 'label_img1'
时间: 2023-10-07 10:08:12 浏览: 40
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误表示在你的 `myTK` 对象中没有名为 `label_img1` 的属性。这可能是因为你在代码中尝试访问一个不存在的标签或标签名称拼写错误。
你需要检查你的代码并确保 `label_img1` 标签存在并正确命名。你可以在代码中搜索 `myTK` 并找到尝试访问 `label_img1` 的部分进行检查。
阅读全文