“TEXTFILE = open('x.txt','a')”中的变量是什么数据类型?

时间:2016-02-21 02:48:45

标签: python types

当测试python将其描述为“_io.TextIOWrapper”时,我不太确定这是什么数据类型。

1 个答案:

答案 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'>
>>>