1. 编写程序,从键盘上获得用户连续输入且用逗号分隔的若干个数字(不必以逗号结尾),计算所有输入数字的和并输出,给出代码提示如下. n = input() nums = ____①____ s = 0 for i in nums: ____②____ print(s)