3.Python条件判断(if else elif)

Posted

tags:

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

#判断
if 条件:
内容一
内容二
else: 如果的意思
内容三
内容四 示例如下:
name = raw_input (‘请输入用户名:‘)
pwd = raw_input (‘请输入密码:‘)
if name == "abc" and pwd == "123qwe":
     print (‘登录成功‘)
else:
     print (‘登录失败‘)

基本条件语句:多个条件判断示例:
inp = raw_input(">>>>")
if inp == "1":
     print ("111")
elif inp == "2":
     print ("222")
elif inp == "3":
     print ("333")
else:
    print (".....")

总结:if else
if 条件:
    代码块
else:
   代码块
2 if 条件:
   代码块
elif 条件:
   代码块
else:
   代码块
3 条件
True False
1 > 2 n1 > n2 n1 == n2
name == "abc" or name == "acc"
name != "abc"
name == "abc" and pwd == "123"








































以上是关于3.Python条件判断(if else elif)的主要内容,如果未能解决你的问题,请参考以下文章

while循环和if流量控制

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

Python的 if .else.elif语句详解

if...elif...else...fi和case...esac的脚本条件判断式

python笔记4-if..elif-else条件语句

if 语句