gpt4 book ai didi

python - 如何划分字典值?

转载 作者:行者123 更新时间:2023-12-05 08:49:17 27 4
gpt4 key购买 nike

<分区>

我有一个字典,其中包含键和值作为列表中的整数,例如,

input: {
'example_key1': [358, 57, 18602, 18388],
'example_key2': [415, 12, 4800, 2013],
'example_key3': [450, 10, 4500, 4500],
}

我希望将列表中每个键的最后一个值与倒数第二个值相除,将答案乘以 100,然后将答案输入到类似的字典中,ndigit = 1 point round。

output: {
'example_key1': [98.8], # [round((((18388 / 18602)) * 100), 1)]
'example_key2': [41.9], # [round((((2103 / 4800)) * 100), 1)]
'example_key3': [100.0], # [round((((4500 / 4500)) * 100), 1)]
}

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