#文件的读取
#使用open()函数读取文件中的内容
filepath='d:/note.txt' #定义一个变量,记录文件的位置路径
file1=open(filepath,encoding='utf-8') #读取文件
# print(file1.read()) #读取文件中的内容
# print(file1.readline()) #读取文件中一行的内容
print(file1.readlines()[1]) #读取文件内容,返回值是列表,每行作为一个元素
file1.close() #关闭文件
#如果遇到乱码问题,首先修改settings里的editor->file encoding->将文字设置为不乱码的格式
#如果各种设置都乱码,修改txt文件的格式 改为GB2312
#报错,报错原因是读取的文件中有中文
#UnicodeDecodeError: 'gbk' codec can't decode byte 0xad in position 14: illegal multibyte sequence
#把文件改成utf-8, encoding='utf-8'