如何在python中添加数字字符串

如何在python中添加数字字符串

例如,如果我输入了345。我要加3+4+5。我以前在这里见过,只是好像再也找不到了。谢谢!

最佳答案

s = raw_input()
print sum(int(c) for c in s.strip())

关于python - 如何在python中添加数字字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5781043/

10-11 18:13