逻辑处理(if,elif,else)

Posted study-notes-of-python

tags:

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

2019-01-01
一、单个逻辑处理

_username = ‘Izaiah‘
_password = ‘123‘

username = input("username:")
password = input("password:")

if _username == username and _password == password :
print("Welcome user {name} login..." .format(name=username))
else:
print("Invalid username or password!")

二、多个逻辑处理
age_of_oldboy = ‘56‘
guss_age = input("guss the age:")
if guss_age == age_of_oldboy :
print("yes,you got it.")
elif guss_age > age_of_oldboy :
print("please guss smaller.")
else:
print("please guss bigger.")





















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

#elif

如何在 C++ 中将“elif”定义为“else if”?

在 if elif else 语句中具有逻辑与和 ors 的 Bash 脚本

python基础;if else;for;while 分支处理.continue,break

Python的 if .else.elif语句详解

if循环判断