1、从文件中读取数据
有时我们会把一些需要用到的数据存储到文本文件中,等到要用数据的时候,就可以从文本中读取出来,我们存了一个文档数据test_data.txt,如下所示:
打开文件的语句如下:
file object = open (file_name,[access_mode])
file_name:代表要传入的文件的文件名
access_mode:代表打开文件的模式
读取文件——方法:read()
代码如下:
file = open('test_data.txt','r')
res = file.read()
print(res)
file.close()
总结:一旦打开文件一定要记得关闭资源,调用close()函数。
读取包含中文内容的文本时,保存文件时需要选择UTF-8的格式,同时在代码中需要添加encoding='UTF-8'
代码如下:
file = open('test_1.txt','r',encoding = 'UTF-8')
res = file.read()
print(res)
file.close()
网友评论