标签: python list export text-files
textFileLists = [[str1, str2, str3], [str1, str2, str3], [str1, str2, str3]] data = open('Data for A11.1.txt', 'r') read = data.read() new = [] for i in read: new.append(i.split('\n')) print(new)
是否可以将列表列表导出并最初保留它?