Python file.read()不返回值

时间:2018-10-02 19:09:11

标签: python python-3.x file-read

我试图读取文本文件的内容以供变量使用,但是当我尝试使用该变量时该变量为空。

z = open("C:\\Users\\USER\\Documents\\file.txt", "r")
length = len(z.read())
data = z.read()
print(data)
z.close()

我什么也没收到,file.txt有内容

0 个答案:

没有答案