请阅读下面的代码:num_one = 12def sum(num_two):global num_onenum_one = 90return num_one + num_twoprint(sum(10))运行代码,输出结果为
A. 102
B. 100
C. 22
D. 12
请阅读下面的代码:def many_param(num_one, num_two, *args):print(args)many_param(11, 22, 33, 44, 55)运行代码,输出结果为
A. (11,22,33)
B. (22,33,44)
C. (33,44,55)
D. (11,22)