在DOB中添加数字?

时间:2015-12-07 20:03:38

标签: python-3.x

如何将数字分别添加到用户的输入中?例如:120409 = 25我是python的新手。为什么总不工作?现在没有打印出来,我的缩进是否有问题?

    me = int(input("enter your dob 230478"))

    def dob(me):
        dob = []
        count = 0
        me = str(me)
        for i in range(len(me)):
            dob.append(me[i])
        for i in range(len(dob)):
            dob[i] = int(dob[i])
            count += dob[i]
        total = count + me
    print(dob,me)

1 个答案:

答案 0 :(得分:0)

试试这个:

usrInp = str(input("enter your dob 230478: "))

def method1(usrInp):
  count = 0
  for digit in usrInp:
    count = count + int(digit)
  print(count)

method1(usrInp)