第26412题 判断题
判断「执行给定Python代码时调用无参get_max函数会得到None类型数据」的说法是否正确
def get_max(*args):
    if not args:
        return None
    return max(args)

print(type(get_max()))
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析