Day1:If else流程判断
Posted 中华酷联
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Day1:If else流程判断相关的知识,希望对你有一定的参考价值。
一、if...else语句
if 条件成立:
执行条件成立后的代码
else:
执行条件不成立的代码
注:注意有冒号,python会强制缩进!一般语句都必须顶格写,缩进是缩进一个tab键,等于4个空格
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # Author:Hiuhung Wan 4 _username = "Hiuhung Wan" 5 _password = "abcd1234" 6 username = input("Username:") 7 password = input("Password:") 8 if _username == username and _password == password: 9 print("Welcome user {name} login...".format(name = username)) 10 else: 11 print("Invalid username or password!")
二、if...elif...else语句
if 表达式1:
语句1
elif 表达式2 :
语句2
elif 表达式3 :
语句3
elif 表达式m :
语句m
else:
语句
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # Author:Hiuhung Wan 4 age_of_MrWang = 48 5 guess_age = int(input("Enter the age of Mr Wang:")) 6 if guess_age == age_of_MrWang: 7 print("Yes,you got it!") 8 elif guess_age < age_of_MrWang: 9 print("Think bigger!") 10 else: 11 print("Think smaller!")
以上是关于Day1:If else流程判断的主要内容,如果未能解决你的问题,请参考以下文章
python基础5 if-else流程判断,for循环和while循环