我有這樣一個清單:Python - 如何從列表中刪除特定的單詞?
defaultdict(<class 'list'>, {'Web': ['site: www.domain.com'], 'Phone': ['(111) 222-333', '(222) 333-444'], 'VAT': ['987654321'], 'Fax': ['(444) 555-666', '(777) 888-999'], 'E-mail': ['adress: [email protected]', 'address: [email protected]'], 'ID': ['number:1234567890']})
我要清理類的字眼:site:
,adress:
number:
。
輸出應該是:
defaultdict(<class 'list'>, {'Web': ['www.domain.com'], 'Phone': ['(111) 222-333', '(222) 333-444'], 'VAT': ['987654321'], 'Fax': ['(444) 555-666', '(777) 888-999'], 'E-mail': ['[email protected]', '[email protected]'], 'ID': ['1234567890']})
我知道,我可以從特定的列表項中刪除的話,如:
for em in d["E-mail"]:
print(em.replace("address: ","",1))
但我正在尋找的東西,會清理整個名單。
如何分配的值defaultdict? –