当测试python将其描述为“_io.TextIOWrapper”时,我不太确定这是什么数据类型。
答案 0 :(得分:1)
在Python 2中:
>>> f = open("junk.txt", "a")
>>> f
<open file 'junk.txt', mode 'a' at 0xb72ddee8>
>>> type(f)
<type 'file'>
>>>
在Python 3中:
>>> f = open("junk.txt", "a")
>>> f
<_io.TextIOWrapper name='junk.txt' mode='a' encoding='ANSI_X3.4-1968'>
>>> type(f)
<class '_io.TextIOWrapper'>
>>>