pythonnonetype转换float_python如何将Nonetype转换为int或
字符串
在其中⼀条评论中,你说:
Somehow I got an Nonetype value, it supposed to be an int, but it’s now a Nonetype object
如果它是你的代码,出当你得到None当你期望⼀个数字,并停⽌发⽣。
如果它是别⼈的代码,出条件下它给出⽆,并确定⼀个合理的值使⽤,与通常的条件代码:
result = could_return_none(x)
if result is None:
result = DEFAULT_VALUE
…甚⾄…
if x == THING_THAT_RESULTS_IN_NONE:
result = DEFAULT_VALUE
else:python代码转换
result = could_return_none(x) # But it won't return None, because we've restricted the domain.
没有理由⾃动使⽤0在这⾥ – 依赖于“假”的None的解决⽅案假设你会想要这个。 DEFAULT_VALUE(如果它甚⾄存在)完全取决于您的代码的⽬的。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。