nas-tools/app/utils/number_utils.py
2023-02-13 12:52:00 +08:00

13 lines
228 B
Python

class NumberUtils:
@staticmethod
def max_ele(a, b):
"""
返回非空最大值
"""
if not a:
return b
if not b:
return a
return max(int(a), int(b))