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

2024-11-22 15:15:28
推荐回答(1个)
回答1:

C++:

x>y ? x : y

Python:

x if x>y else y