gpt4 book ai didi

python - 我应该如何根据字典键的存在进行条件分配?

转载 作者:行者123 更新时间:2023-12-01 00:01:01 24 4
gpt4 key购买 nike

我有一些像这样的 Perl 代码:

my $match = $matches{$key}
? "$matches{$key} was a match!"
: "There was no match."

如何用 Python 最好地重写它?我试图避免出现 KeyError。

最佳答案

这个。

message = "%s was a match"%(matches[key],) if key in matches else "There was no match."

关于python - 我应该如何根据字典键的存在进行条件分配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/644062/

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