我試圖從字典中提取某些值並以特定方式顯示它。我會告訴你我的代碼示例如下:Python - 以特定方式從字典中提取信息
dict = [{'Titel': 'Rush', 'Name': 'Floris', 'Starttime': '20:30', 'Email': '[email protected]', 'Supplier': 'RTL8', 'Surname': 'Cake', 'Code': 'ABC123'},
{'Titel': 'Rush', 'Voornaam': 'Jaron', 'Starttime': '20:30', 'Email': '[email protected]', 'Supplier': 'RTL8', 'Surname': 'Pie', 'Code': 'XYZ123'},
{'Titel': 'Underneath', 'Name': 'Klaas', 'Starttime': '04:00', 'Email': '[email protected]', 'Supplier': 'RTL8', 'Surname': 'Klassie', 'Code': 'fbhwuq8674'}]
這是我的字典。我想作爲輸出是:
Titel, Starttime,
Surname, Name, Email
因此,這將是這樣的:
Rush, 20:30,
Cake, Floris, [email protected]
Pie, Jaron, [email protected]
Underneath, 04:00,
Klassie, Klaas, [email protected]
您是否知道手前的字典鍵\ – The6thSense
是的,它們都是在CSV文件中定義的。他們都遵循相同的格式。字典的鍵是:'titel','name','starttime','email','supplier','surname','code' – Cake
你是否還需要titel組合 – The6thSense