python自定义函数的返回值可以作为后续代码中if函数的判断条件吗,如果可以,语法格式是什么样子的
def aa(): return 2 def bb(): if aa() > 1: print("aa>1") bb()