gpt4 book ai didi

python - 字典和默认值

转载 作者:IT老高 更新时间:2023-10-28 12:19:48 26 4
gpt4 key购买 nike

假设 connectionDetails 是一个 Python 字典,那么像这样重构代码的最好、最优雅、最“pythonic”的方式是什么?

if "host" in connectionDetails:
host = connectionDetails["host"]
else:
host = someDefaultValue

最佳答案

像这样:

host = connectionDetails.get('host', someDefaultValue)

关于python - 字典和默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9358983/

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