#从控住天输入一个字符串,打印出这个字符串中所以数字字符的和str=input("输入")index=0sum=0while index<len(str): if str[index]>="0"and str[index]<="9": sum+= int(str[index]) index+=1print("sum=%d"%(sum))
python打印字符串中数字字符的和
原文:https://www.cnblogs.com/zlong123/p/10422440.html