使用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]: ...
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试