gpt4 book ai didi

python - 如何在列表理解中将字典值转换为小写?

转载 作者:太空宇宙 更新时间:2023-11-04 07:50:20 26 4
gpt4 key购买 nike

我有一个字典列表,

list_dict = [{'name':'Rita' , 'customer_id': 'A12B1', 'city': 'Chennai'}, 
{'name':'Sita' , 'customer_id': 'A61B8', 'city': 'Salem'}]

我需要得到结果,

list_dict = [{'name':'rita' , 'customer_id': 'a12b1', 'city': 'chennai'}, 
{'name':'sita' , 'customer_id': 'a61b8', 'city': 'salem'}]

我试过,

new_list = []
for index in range(len(list_dict)):
new_dict = {}
for key,val in list_dict[index].items():
new_dict[key] = str(val).lower()
new_list.append(new_dict)

如何使用列表推导式获得相同的结果?

最佳答案

我认为这会解决您的问题:

[{ key: str(value).lower() for key, value in e.items() } for e in list_dict ]

基本上,您必须使用包含字典理解的列表理解。

关于python - 如何在列表理解中将字典值转换为小写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55701139/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com