在Python中使用条件条件
我有一个 python 函数,其中包含一个 if 语句来检查某些内容。
def my_func(a, b, c):
if a < b and b < c:
#do complicated stuff
我想修改该函数,以便调用者可以通过传入布尔值来确定是否执行 if 语句检查。
def my_func(a, b, c, perform_check=True):
我试图弄清楚如何使条件仅有时被调用,或在其他时候被跳过。
I have a python function that contains an if-statement to check something.
def my_func(a, b, c):
if a < b and b < c:
#do complicated stuff
I want to modify the function so that the caller can determine whether or not to perform the if-statement check, by passing in a boolean.
def my_func(a, b, c, perform_check=True):
I'm trying to figure out how to make the conditional only be invoked sometimes, or skipped other times.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你需要的是这样的东西:
I guess something like this is what you need: