考试
1970-01-01 08:00:00

def Sum(a, b=3, c=5): print(a,

题目描述

def Sum(a, b=3, c=5): print(a,b,c) Sum(8) 运行结果是:

答案解析

8 3 5

加载中...
AI正在思考中,请稍候...