面试题答案一键面试def func(*args, **kwargs): total = sum(args) result_dict = kwargs return (total, result_dict)