list_1 = ['张三','李四','王五'] # 1.打开文件 file_handle = open('student.txt',mode='w') # 2.写入数据 for name in list_1: file_handle.write(name) # 写入换行符 file_handle.write('\n') # 3.关闭文件 file_handle.close() # 读取文件,并且必须是一个列表,格式:['张三','李四','王五'] file_handle = open('student.txt',mode='r') # 使用readlines() 读取所有行的数据,会返回一个列表,列表中存放的数据就是每一行的内容 contents = file_handle.readlines() # 准备一个列表,用来存放取出来的数据 student_list = [] # for循环遍历列表,去除每一行读取到的内容 for name in contents: # strip()去除字符串中的某些字符 去除\n name = name.strip('\n') # 把处理好的name添加到列表中 student_list.append(name) # 这个列表中存放的就是和写入之前一样的内容 print(student_list) # 3.关闭文件 file_handle.close()
python列表数据读取和写入
最新推荐文章于 2024-03-21 07:49:18 发布