# line = input("Enter a line of numbers - separate them with spaces: ")
line = '1 1 b 1 1 11 1 666'
strings = line.split()
total = 0
for substr in strings:
try:
total += float(substr)
except:
print(substr, "is not a number.")
print("The total is:", total)
or
for substr in strings:
if substr.isnumeric():
total += float(substr)
print("The total is:", total)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…