下面程序的输出结果是()。def StudentInfo(country='中国',name):print('{},{}'.format(name,country))StudentInfo('美国','大卫')
A. 美国,大卫
B. 大卫,美国
C. 大卫,中国
D. 报错
下面代码的输出结果是()def func(a,b):a *= breturn as = func(5,2)print(s)
A. 20
B. 1
C. 12
D. 10
已知函数foo的定义为:def foo(arg1, arg2='test', arg3=100):print(arg1, arg2, arg3)则以下调用函数的语句错误的是()。
A. foo(arg2='what',10)
B. foo('where')
C. foo('where','what')
D. foo(arg1 = 'where')
已知函数调用Fun(**a),则a可能是()。
A. 元组
B. 字典
C. 集合
D. 列表