问题 更新时间2023/6/29 13:47:00 定义函数如下:def example(*numbers): s = 1 for n in numbers: s = s * n + n return s以下( )的输入可以得到21的结果?A.example([3, 2, 1])B.example([3, 3])C.nums = [1, 2, 3]; example(nums)D.nums = (3, 3); example(*nums) 答案 登录 注册 D 出自:国家开放大学 >> 国家开放大学Python程序设计