python if elif else

Posted 上官飞鸿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python if elif else相关的知识,希望对你有一定的参考价值。

技术分享
username = jack
password = 123
_username = input(username)
_password = input(password)

if username == _username and password == _password:
    print(ok)
else:
    print(error)

answer = 10
guess = int(input(猜一个:))
if answer == guess:
    print(猜对了)
elif answer >guess:
    print(猜小了)
else:
    print(猜大了)

guess = int(input(请输入10以下的一个数字))
if guess <3:
    print(小于3)
elif guess <5:
    print(小于5)
elif guess <7 :
    print(小于7)
elif guess <9:
    print(小于9)
else:
    print(大于9)
View Code

if else 

elif

 

判断执行

以上是关于python if elif else的主要内容,如果未能解决你的问题,请参考以下文章

Python小技巧,如何简化大量的 if…elif…else 代码?

python 中 if 的用法(if else, if not, elif)

python流程控制

python:while循环中的b/w multi-ifs和if-elif-else的区别

Python基础---循环--条件判断(while-for-if-elif-else)

python while 循环 if elif else 判断