Python读取文件内容

时间:2016-12-17 03:42:02

标签: python file

在Python中,如何只读取文件内容(不包括属性和文件名),比如在Java中使用InputStream? 我需要一种适用于各种文件格式的方法

我试过这个

with open(filePath, "rb") as imageFile:
    str = base64.b64encode(imageFile.read())
    M=str.decode()
    print(M)

问题是,我会在该块之后的任何对象中得到错误

1 个答案:

答案 0 :(得分:0)

最基本的方式是这样的:

with open("filename.txt") as f:
    contents = f.read()

变量内容现在将包含文件中所有内容的字符串。更多信息在Python文档(https://docs.python.org/3/tutorial/inputoutput.html)中。