使用python读取文件的方法:先利用python内置函数open将文件读成字节流对象;然后利用字节流对象的read方法即可将文件读入python。

fi = open('wenben.txt', 'r', encoding='utf-8')

data = fi.read()

print(data)

结果是

我是测试文本

open源码

 def open(file: Union[str, bytes, int], mode: str = ..., buffering: int = ..., encoding: Optional[str] = ...,
             errors: Optional[str] = ..., newline: Optional[str] = ..., closefd: bool = ...,
             opener: Optional[Callable[[str, int], int]] = ...) -> IO[Any]: ...

具体可以看官方文档

推荐课程:Python面对对象(Corey Schafer)

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎么用python读文件