在python中,有没有像c++中 (x>y)?x:y 这样的命令

2024年11月22日 15:15
有1个网友回答
网友(1):

C++:

x>y ? x : y

Python:

x if x>y else y