作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样的代码:
if(func_cliche_start(line)):
a=func_cliche_start(line)
#... do stuff with 'a' and line here
elif(func_test_start(line)):
a=func_test_start(line)
#... do stuff with a and line here
elif(func_macro_start(line)):
a=func_macro_start(line)
#... do stuff with a and line here
...
每个 func_blah_start 函数要么返回 None 要么返回一个字符串(基于输入行)。我不喜欢对 func_blah_start 的冗余调用,因为它看起来很浪费(func_blah_start 是“纯”的,所以我们可以假设没有副作用)。对于这类事情,有没有更好的成语,或者有更好的方法吗?
也许我错了,(我的 C 已经生锈了),但我认为你可以在 C 中做一些事情:
int a;
if(a=myfunc(input)){ /*do something with a and input here*/ }
有对应的 python 吗?
最佳答案
为什么不在 if 语句之前将函数 func_cliche_start 赋值给变量 a?
a = func_cliche_start(line)
if a:
pass # do stuff with 'a' and line here
如果 func_cliche_start(line) 返回 None,则 if 语句将失败。
关于python - 有没有办法获取函数的返回值并同时测试它是 "nonzero"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10359724/
我是一名优秀的程序员,十分优秀!