Python中if elif else及缩进的使用简述
程序员文章站
2024-01-27 14:26:22
代码如下所示:
scole = input("input your scole:")
if scole>90:
print("a")
elif s...
代码如下所示:
scole = input("input your scole:") if scole>90: print("a") elif scole>80: print("b") elif scole>70: print("c") elif scole>60: print("d") elif scole>50: print("e") else : print("out")
哪项先符合条件,就只执行此项。
所有的缩进要一致,
可以使用tab键,但不建议,因为在不用系统中会有不同,不便移植。
建议使用4个空格键,可以吧tab键输入设置成自动转化成4个空格键。
总结
以上所述是小编给大家介绍的python中if elif else及缩进的使用,希望对大家有所帮助