执行下面Python代码,调用函数get_max可以得到一个None类型的数据。
def get_max(*args):
if not args:
return None
return max(args)
print(type(get_max()))
对
错