python求各位数之和

a=int(input())
s=0
while a !=0:
    s+=a%10
    a//=10
print(s)

输出结果:

 

你可能感兴趣的:(python,开发语言,后端)