gpt4 book ai didi

python - 使用通配符键匹配迭代字典

转载 作者:太空宇宙 更新时间:2023-11-04 03:33:57 25 4
gpt4 key购买 nike

我正在尝试遍历字典以检索与键的模式 npi[0-9]+ 匹配的所有值。这在 Python 中可行吗?

for data in input_file:
print(data['npi0'])
print(data['npi1'])
....

最佳答案

您只需遍历字典,然后对键进行模式匹配。

for key in dict:
if re.match(r'npi[0-9]+', key):
print(dict[key])

关于python - 使用通配符键匹配迭代字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29952323/

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