AttributeError: '<invalid type>' object has no attribute 'exit'
AttributeError: '<invalid type>' object has no attribute 'exit'
抛出错误:Line 2: AttributeError: '<invalid type>' object has no attribute 'exit'
当 from sys import exit
为 运行 时。我该如何解决?代码的问题部分:
from sys import exit
您是否碰巧创建了一个名为 sys
的模块或文件?如果是这样,您是从本地模块导入而不是从内置 Python sys
模块
否则,这些导入命令区分大小写,确保所有内容都是小写的(它在你的 post 中,但你永远不知道):
from sys import exit
抛出错误:Line 2: AttributeError: '<invalid type>' object has no attribute 'exit'
当 from sys import exit
为 运行 时。我该如何解决?代码的问题部分:
from sys import exit
您是否碰巧创建了一个名为 sys
的模块或文件?如果是这样,您是从本地模块导入而不是从内置 Python sys
模块
否则,这些导入命令区分大小写,确保所有内容都是小写的(它在你的 post 中,但你永远不知道):
from sys import exit