list = input('Input a list of numbers separated by comma then space:\n ') try: list = list.split(', ') sum = 0 for number in list:
確定! 回上一頁