gpt4 book ai didi

python-2.7 - Python - 分配 None 或值

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

是否有一种简短的方法可以根据值在变量中分配 None 或值?

x= value if value!= 999 else None

最佳答案

result = (on_false, on_true)[condition]


>>> value = 10
>>> x = (None,value)[value != 999]
>>> print x
10

>>> value = 999
>>> x = (None,value)[value != 999]
>>> print x
None

关于python-2.7 - Python - 分配 None 或值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42887745/

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