gpt4 book ai didi

python - 使用命名元组时为 "Cannot import name x"

转载 作者:太空宇宙 更新时间:2023-11-03 14:53:53 27 4
gpt4 key购买 nike

因此,我在单独的文件“types.py”中定义了几个命名元组:

import collections

TestWindow = collections.namedtuple('TestWindow', 'HWND rect x y w h refPoint')
Point = collections.namedtuple('Point', 'x y')

并想将这些类型导入到另一个文件中:

from types import TestWindow, Point

def main():
pass

一旦我添加了第一个导入行,我就会得到:

Traceback (most recent call last):
File "main.py", line 1, in <module>
from types import TestWindow, Point
ImportError: cannot import name 'TestWindow'

这里有什么问题?

最佳答案

有一个 module in stdlib named types , 它被导入。

要么重命名你的模块,要么切换到绝对导入。

关于python - 使用命名元组时为 "Cannot import name x",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44186402/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com