编程语言
首页 > 编程语言> > python类似三目运算符的方法

python类似三目运算符的方法

作者:互联网

python类似三目运算符的方法

def maxOfTwoNums(a : int, b : int):
    if a > b:
        return a
    else:
        return b
def maxOfTwoNums(a : int, b : int):
    return (a if a > b else b)

标签:return,python,maxOfTwoNums,运算符,int,三目
来源: https://www.cnblogs.com/yiru7697/p/15948067.html