Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
180 views
in Technique[技术] by (71.8m points)

python - How do I make an exception for a blank space so it would not output a 0?

How do I make an exception for blank spaces so it would not ouput 0. It's only outputting the "total" itself.

 line = input("Enter a line of numbers - separate them with spaces: ")
    strings = line.split()
    total = 0
    try:
        for substr in strings:
            total += float(substr)
        print("The total is:", total)
    except:
        print(substr, "is not a number.")
question from:https://stackoverflow.com/questions/65841769/how-do-i-make-an-exception-for-a-blank-space-so-it-would-not-output-a-0

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
# 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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...