从词典列表中创建新列表

时间:2019-07-21 22:27:18

标签: python-3.x string list dictionary text

背景

以下代码可为日期添加2天(例如1/1/2000变为1/3/2000,并取自Altering date in list of dictionary

import datetime

list_of_dic = [{'id': 'T1','type': 'LOCATION-OTHER','start': 142,'end': 148,'text': 'California'},
 {'id': 'T2', 'type': 'PHONE', 'start': 342, 'end': 352, 'text': '123456789'},
 {'id': 'T3', 'type': 'DATE', 'start': 679, 'end': 687, 'text': '1/1/2000'},
 {'id': 'T10','type': 'DOCTOR','start': 692,'end': 701,'text': 'Joe'},
 {'id': 'T11', 'type': 'DATE', 'start': 702, 'end': 710, 'text': '5/1/2000'}]

for i in list_of_dic:           #Iterate list
    if i["type"] == 'DATE':     #Check 'type'
        i["text"] = (datetime.datetime.strptime(i["text"], "%m/%d/%Y") + datetime.timedelta(days=2)).strftime("%m/%d/%Y")   #Increment days. 

print(list_of_dic)

输出

[{'id': 'T1', 'type': 'LOCATION-OTHER', 'start': 142, 'end': 148, 'text': 'California'}, 
   {'id': 'T2', 'type': 'PHONE', 'start': 342, 'end': 352, 'text': '123456789'}, 
   {'id': 'T3', 'type': 'DATE', 'start': 679, 'end': 687, 'text': '01/03/2000'}, 
  {'id': 'T10', 'type': 'DOCTOR', 'start': 692, 'end': 701, 'text': 'Joe'}, 
 {'id': 'T11', 'type': 'DATE', 'start': 702, 'end': 710, 'text': '05/03/2000'}]

问题

如果要将print(list_of_dic)的输出保存到名为new_list_of_dic的新列表中,代码将如何更改?

1 个答案:

答案 0 :(得分:1)

仅使用copy

new_list_of_dic = list_of_dic.copy()

或者您是否想要字符串?

new_list_of_dic = str(list_of_dic)