亿迅智能制造网
工业4.0先进制造技术信息网站!
首页 | 制造技术 | 制造设备 | 工业物联网 | 工业材料 | 设备保养维修 | 工业编程 |
home  MfgRobots >> 亿迅智能制造网 >  >> Industrial programming >> Python

Python 条件语句:IF…Else、ELIF 和 Switch Case

什么是 Python 中的条件语句?

Python 中的条件语句根据特定布尔约束的计算结果为真或假,执行不同的计算或操作。条件语句在 Python 中由 IF 语句处理。

在本教程中,我们将了解如何在 Python 中应用条件语句。

什么是 Python If 语句?

Python if 语句 用于决策操作。它包含一段代码,该代码仅在 if 语句中给出的条件为真时运行。如果条件为假,则运行可选的 else 语句,其中包含 else 条件的一些代码。

当你想证明一个条件而另一个条件不成立时,你可以使用 Python if else 语句。

Python if 语句语法:

if expression
 Statement
else 
 Statement


Python if…else 流程图

我们来看一个 Python if else 语句的例子:

#
#Example file for working with conditional statement
#
def main():
	x,y =2,8
	
	if(x < y):
		st= "x is less than y"
	print(st)
	
if __name__ == "__main__":
	main()

如果条件不满足会发生什么

在这一步中,我们将看到 Python 中的 if 条件不满足时会发生什么。

如何使用“其他条件”

当您必须根据另一个陈述来判断一个陈述时,通常会使用“其他条件”。如果一个条件出错,那么应该有另一个条件来证明该语句或逻辑是正确的。

示例

#
#Example file for working with conditional statement
#
def main():
	x,y =8,4
	
	if(x < y):
		st= "x is less than y"
	else:
		st= "x is greater than y"
	print (st)
	
if __name__ == "__main__":
	main()

当“其他条件”不起作用时

在很多情况下,您的“其他条件”不会给您想要的结果。由于程序逻辑错误,它会打印出错误的结果。在大多数情况下,当您必须在一个程序中证明两个以上的语句或条件时,就会发生这种情况。

一个示例 会更好地帮助你理解这个概念。

这里两个变量都是相同的 (8,8) 并且程序输出是 “x is greater than y”, 这是错误 .这是因为它检查第一个条件(Python 中的 if 条件),如果失败,则默认打印出第二个条件(else 条件)。在下一步中,我们将看到如何纠正这个错误。

#
#Example file for working with conditional statement
#
def main():
	x,y =8,8
	
	if(x < y):
		st= "x is less than y"
	else:
		st= "x is greater than y"
	print(st)
	
if __name__ == "__main__":
	main()

如何使用“elif”条件

为了纠正之前由“else condition”造成的错误,我们可以使用“elif” 陈述。通过使用“elif ”条件,您是在告诉程序在其他条件出错或不正确时打印出第三个条件或可能性。

示例

#
#Example file for working with conditional statement
#
def main():
	x,y =8,8
	
	if(x < y):
		st= "x is less than y"
	
	elif (x == y):
		st= "x is same as y"
	
	else:
		st="x is greater than y"
	print(st)
	
if __name__ == "__main__":
	main()

如何用最少的代码执行条件语句

在这一步中,我们将看到如何压缩条件语句。我们可以将它们与单个代码一起使用,而不是单独为每个条件执行代码。

语法

	A If B else C

示例

	
def main():
	x,y = 10,8
	st = "x is less than y" if (x < y) else "x is greater than or equal to y"
	print(st)
	
if __name__ == "__main__":
	main()

Python 嵌套 if 语句

以下示例演示了 Python 中的嵌套 if 语句

total = 100
#country = "US"
country = "AU"
if country == "US":
    if total <= 50:
        print("Shipping Cost is  $50")
elif total <= 100:
        print("Shipping Cost is $25")
elif total <= 150:
	    print("Shipping Costs $5")
else:
        print("FREE")
if country == "AU": 
	  if total <= 50:
	    print("Shipping Cost is  $100")
else:
	    print("FREE")

在上面的代码中取消注释第 2 行并注释第 3 行并再次运行代码

Python 中的 Switch Case 语句

什么是 Switch 语句?

switch 语句是一种多路分支语句,它将变量的值与 case 语句中指定的值进行比较。

Python 语言没有 switch 语句。

Python使用字典映射在Python中实现Switch Case

示例

function(argument){
    switch(argument) {
        case 0:
            return "This is Case Zero";
        case 1:
            return " This is Case One";
        case 2:
            return " This is Case Two ";
        default:
            return "nothing";
    };
};

对于上述 Python 中的 Switch 案例

def SwitchExample(argument):
    switcher = {
        0: " This is Case Zero ",
        1: " This is Case One ",
        2: " This is Case Two ",
    }
    return switcher.get(argument, "nothing")


if __name__ == "__main__":
    argument = 1
    print (SwitchExample(argument))

Python 2 示例

以上代码是 Python 3 示例,如果您想在 Python 2 中运行,请考虑以下代码。

# If Statement 
#Example file for working with conditional statement
#
def main():
	x,y =2,8
	
	if(x < y):
		st= "x is less than y"
	print st
	
if __name__ == "__main__":
	main()



# How to use "else condition"
#Example file for working with conditional statement
#
def main():
	x,y =8,4
	
	if(x < y):
		st= "x is less than y"
	else:
		st= "x is greater than y"
	print st
	
if __name__ == "__main__":
	main()



# When "else condition" does not work
#Example file for working with conditional statement
#
def main():
	x,y =8,8
	
	if(x < y):
		st= "x is less than y"
	else:
		st= "x is greater than y"
	print st
	
if __name__ == "__main__":
	main()


# How to use "elif" condition
#Example file for working with conditional statement
#
def main():
	x,y =8,8
	
	if(x < y):
		st= "x is less than y"
	
	elif (x == y):
		st= "x is same as y"
	
	else:
		st="x is greater than y"
	print st
	
if __name__ == "__main__":
	main()


# How to execute conditional statement with minimal code
def main():
	x,y = 10,8
	st = "x is less than y" if (x < y) else "x is greater than or equal to y"
	print st
	
if __name__ == "__main__":
	main()


# Nested IF Statement
total = 100
#country = "US"
country = "AU"
if country == "US":
    if total <= 50:
        print "Shipping Cost is  $50"
elif total <= 100:
        print "Shipping Cost is $25"
elif total <= 150:
	    print "Shipping Costs $5"
else:
        print "FREE"
if country == "AU": 
	  if total <= 50:
	    print "Shipping Cost is  $100"
else:
	    print "FREE"


#Switch Statement
def SwitchExample(argument):
    switcher = {
        0: " This is Case Zero ",
        1: " This is Case One ",
        2: " This is Case Two ",
    }
    return switcher.get(argument, "nothing")


if __name__ == "__main__":
    argument = 1
    print SwitchExample(argument)

总结:

Python 中的条件语句由 if 语句处理,我们在这里看到了可以使用 Python if else 等条件语句的各种其他方式。


Python

  1. C# if, if...else, if...else if 和嵌套 if 语句
  2. C# switch 语句
  3. C++ switch..case 语句
  4. C if...else 语句
  5. C switch 语句
  6. Python 语句、缩进和注释
  7. Python if...else 语句
  8. Python pass 语句
  9. Java if...else 语句
  10. Java switch 语句
  11. 带有示例的 C++ Switch Case 语句
  12. Python Print() 语句:如何通过示例打印