python中如果需要进一步处理文件内容,可以将文本内容导入list列表。
# -*- coding:utf-8 -*- f = open(r'dict.txt',encoding = "utf-8") a = list(f) print(a) f.close()