python基础-读写txt文件

读取txt文件

常用读取文件方式:
1、readline
2、read
3、readlines

方法一:readline

# 方法一:读取每一行
with open("test.txt", "r",encoding="utf-8") as f:  # 打开文件
    data = f.read()  

你可能感兴趣的:(python,python)