我正在嘗試使用列表理解將行的不同部分切分爲字典列表。下面的代碼不起作用,但它說明了我正在嘗試做什麼。任何幫助將非常感激!通過列表理解解析一行到字典
感謝
def getDataElements(self):
return [x for x for line in self.data: {"Number": line[0:9],
"FullName": line[9:27].rstrip(),
"LastName": line[27:63].rstrip(),
"Area": line[63:65].rstrip(),
"City": line[65:90].rstrip(),
"Status": line[91],
"Status2": line[92],
"Status3": line[93]]