>> type(f) >>> isinstance(f, TextIOWrapper) Traceback -6ren">
gpt4 book ai didi

python - 如何使用 isinstance() 检查对象是否为文件?

转载 作者:太空狗 更新时间:2023-10-29 20:49:51 25 4
gpt4 key购买 nike

如何检查对象是否为文件?

>>> f = open("locus.txt", "r")
>>> type(f)
<class '_io.TextIOWrapper'>
>>> isinstance(f, TextIOWrapper)
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
isinstance(f, TextIOWrapper)
NameError: name 'TextIOWrapper' is not defined
>>> isinstance(f, _io.TextIOWrapper)
Traceback (most recent call last):
File "<pyshell#8>", line 1, in <module>
isinstance(f, _io.TextIOWrapper)
NameError: name '_io' is not defined
>>> isinstance(f, _io)
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
isinstance(f, _io)
NameError: name '_io' is not defined
>>>

我有一个文本文件变量 f。当我打印 f 的类型时,Python3 解释器显示“_io.TextIOWrapper”,但如果我使用 isinstance() 函数检查它,则会抛出异常:NameError。

最佳答案

_ioio module 的 C 实现.使用 io.IOBase对于直接子类,在导入模块之后:

>>> import io
>>> f = open("tests.py", "r")
>>> isinstance(f, io.IOBase)
True

关于python - 如何使用 isinstance() 检查对象是否为文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22958866/

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