所以我正在编写一个程序,输入一个 3 # 数字并将其分开。我无法弄清楚如何完全添加单独的数字?
例如:用户输入 345
我的程序会将 # 分开为 3、4、5,但我如何将这些数字加在一起?
到目前为止,这是我的代码,
#set variable
val = raw_input("Type your three digit number please: ")
print 'The first digit is {}'.format(val[0])
print 'The second digit is {}'.format(val[1])
print 'The third digit is {}'.format(val[2])
#set variable
total = [val[0] +val [1] + val[2]]
total_value = total
print 'The sum of the three digits is' total_value