为什么Else语句总是运行?

Why the else statement always runs?(为什么Else语句总是运行?)
本文介绍了为什么Else语句总是运行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在用Python做一个基本的计算器,我遇到了这个问题。计算完成后,将打印无效的数字&qot;始终

print("Select an action ")
print("1.) Add")
print("2.) Subtract")
print("3.) Multiply")
print("4.) Divide")
ac = int(input(">>>"))
print("First number :")
fn = float(input(">>>"))
print("Second number :")
sn = float(input(">>>"))

if ac == 1:
    print(fn + sn)
if ac == 2:
    print(fn - sn)
if ac == 3:
    print(fn * sn)
if ac == 4:
    print(fn / sn)
else:
    print("Invalid Number")
    print("Press enter to continue")
    input()

示例(错误)输出为:

Select an action 
1.) Add
2.) Subtract
3.) Multiply
4.) Divide
>>>1
First number :
>>>2
Second number :
>>>3
5.0
Invalid Number
Press enter to continue

如何解决无效号码只在应该打印时才打印的问题?

推荐答案

这与您构建代码的方式有关,请考虑if...elif

print("Select an action ")
print("1.) Add")
print("2.) Subtract")
print("3.) Multiply")
print("4.) Divide")
ac = int(input(">>>"))
print("First number :")
fn = float(input(">>>"))
print("Second number :")
sn = float(input(">>>"))

if ac == 1:
    print(fn + sn)
elif ac == 2:
    print(fn - sn)
elif ac == 3:
    print(fn * sn)
elif ac == 4:
    print(fn / sn)
else:
    print("Invalid Number")
    print("Press enter to continue")
    input()

解释:之前,您检查的ac == 1ac == 4不可能都为真,因此也执行了第二个else语句。if..elif结构可以省略这一点:一旦前面的一个比较结果为真,则不再执行其余的比较。

这篇关于为什么Else语句总是运行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)