我在按某个字段对文本文件中的数据进行排序时遇到了一些问题。以后可能会通过多个字段。.txt 是几千行代码。我是 python 的新手,所以我的代码可能有点乱。例如,这是我要从中读取的文本文件:
stuff
123 1200 id-aaaa stuart@test.com
322 1812 id-wwww machine-switch@test.com
839 1750 id-wwww gary2-da@test.com
500 0545 id-aaaa abc123@test.com
525 1322 id-bbbb zyx321@test.com
到目前为止,我的代码如下:
filelist = open("info.txt").readlines()
splitlist = list()
class data:
def __init__(self, eventName, time, identity, domain):
self.evenName = eventName
self.time = time
self.identity = identity
self.domain = domain
for line in filelist:
filelist = list.split(', ')
splitlist.append(filelist)
for column in splitlist:
if (len(column) > 1): #to skip the first line
eventName = column[0].strip()
time = column[1].strip()
identity = column[2].strip()
domain = column[3].strip()
我想按身份逐行排序 .txt 文件,然后可能按时间排序。我看到这可以通过python教程中的类来完成,所以我正在尝试走这条路。请指教。谢谢!