发布网友 发布时间:2022-04-23 03:19
共4个回答
懂视网 时间:2022-04-07 16:09
elif是else if的简写。else和elif语句也可以叫做子句,因为它们不能独立使用,两者都是出现在if、for、while语句内部的。else子句可以增加一种选择;而elif子句则是需要检查更多条件时会被使用,与if和else一同使用。
实例:
people = 30 cars = 40 buses = 15 if cars > people: print( "We should take the cars.") elif cars < people: print ("We should not take the cars.") else: print ("We can't dicide.") if buses > cars: print ("That's too many buses.") elif buses < cars: print ("Maybe we could take the buses.") else: print ("We still can't decide.") if people > buses: print ("Alright, let's just take the buses.") else: print ("Fine, let's stay home then.")
运行结果:
更多Python相关技术文章,请访问Python教程栏目进行学习!
热心网友 时间:2022-04-07 13:17
elif 在Python语言中可用于代替如下斜体加粗的部分(else-if)
if a == 1:
print("a=1")
else:
if a == 2:
print("a=2")
else:
print("a≠1且a≠2")
也就是说,你可以将代码写成这样:
if a == 1:
print("a=1")
elif a == 2:
print("a=2")
else:
print("a≠1且a≠2")
如果要用语言解释elif,我想它的意思是“如果不是,那么如果”
注:if你问的是其他语言的“#elif”、“elseif”,他们的含义应该差不多;elif你问的是这个英文单词的意思,请忽略我的回答。
热心网友 时间:2022-04-07 14:35
Elif热心网友 时间:2022-04-07 16:09
是人名 Elif