gpt4 book ai didi

python - 导入类 python

转载 作者:太空宇宙 更新时间:2023-11-03 12:22:33 24 4
gpt4 key购买 nike

只是想知道为什么

import sys
exit(0)

给我这个错误:

Traceback (most recent call last):
File "<pyshell#1>", line 1, in ?
exit(0)
TypeError: 'str' object is not callable

但是

from sys import exit
exit(0)

工作正常吗?

最佳答案

Python 仅将选定的名称导入命名空间。

你等效的第一个解决方案应该是

sys.exit(0)

因为 import sys 仅将 sys 关键字导入当前命名空间。

关于python - 导入类 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2997105/

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