在python win系统下 打开TXT文件的实例

如下所示:

fr=open("E:\Python\Test\datingTestSet.txt")
arrayOLines = fr.readlines()

open:打开文件

readlines:读取文件

相关推荐