or
取第一个不为空值的变量
a = b or c or d or e
callable
验证函数是否是可被调用的方法
>>> callable(max) True >>> callable(9) False