昨天简单的学习了一些python的一些简单的语句与python的数据类型,今天继续学习python的基础语句 if 语句。

一、if 语句

  • if 语句语法
if expression:
ifSuite
else:
elseSuite 

  如果表达式expression的值为非0或者为True,则代码组ifSuite将会被执行,否则执行elseSuite代码组。其实这里跟java的语法差不多,但是这里expression可以直接写数据类型。

  • 数字,只要是非0,则会被认为是True。
  • 字符串 只要是非“”, 都会被认为是True。
  • 列表 只要非[], 都会被认为是True。
  • 元组 只要非(), 都会被认为是True。
  • 字典 只要非{}, 都会被认为是True。
  • None 也为假
# -*- coding: utf-8 -*-
'''
Created on 2018年12月17日 @author: Herrt灬凌夜
'''
if 0.1 :
print("真"); if 0 :
print("真");
else :
print("假"); if "" :
print("真");
else :
print("假"); if " " :
print("真");
else :
print("假"); if [] :
print("真");
else :
print("假"); if () :
print("真");
else :
print("假"); if {} :
print("真");
else :
print("假"); if None :
print("真");
else :
print("假"); if "s" in "sdas" :
print("真");

  以下为上述if语句的执行结果:

 

最后写一个简单的例子:
1.提示用户输入用户名密码
2.若用户名为"tom",密码为123456则返回Login否则返回error

# -*- coding: utf-8 -*-
'''
Created on 2018年12月17日
1.提示用户输入用户名密码
2.若用户名为"tom",密码为123456则返回Login否则返回error @author: Herrt灬凌夜
'''
userName = input("请输入用户名:");
passWord = input("请输入密码:");
if userName == "tom" and passWord == "":
print("Login");
else :
print("error");

二、if elif 语句

  • if elif 语句语法
if expression1 :
ifSuite
elif expression2 :
elifSuite
else :
elseSuite 

if elif 语句就相当于java语言中if else 语句一样,主要是用于多条件判断语句。我们以一个简单的实例来看这个语句。
1.输入一个数字,如果这个数字大于0,输出正数,如果小于0,输出负数,如果等于0则输出0

# -*- coding: utf-8 -*-
'''
Created on 2018年12月17日
输入一个数字,如果这个数字大于0,输出正数,如果小于0,输出负数,如果等于0则输出0 @author: Herrt灬凌夜
'''
numStr = int(input("请输入一个数字:"));
if numStr > 0 :
print("正数");
elif numStr < 0 :
print("负数");
else :
print("");

三、一些简单的例子

  • 根据用户输入的成绩,输出,如果大于60则输出“及格”,如果大于70则输出“良好”,如果大于80则输出“好”, 如果大于90则输出优秀,否则输出“不及格”
# -*- coding: utf-8 -*-
'''
Created on 2018年12月17日
根据用户输入的成绩,输出,如果大于60则输出“及格”,如果大于70则输出“良好”,如果大于80则输出“好”, 如果大于90则输出优秀,否则输出“不及格” @author: Herrt灬凌夜
'''
grade = int(input("请输入成绩"));
if grade < 0 or grade > 100 :
print("输入成绩有误!");
elif grade > 60 and grade <= 70 :
print("及格");
elif grade > 70 and grade <= 80 :
print("良好");
elif grade > 80 and grade <= 90 :
print("好");
elif grade > 90 :
print("优秀");
else :
print("不及格");
  • 写一个人机交互的猜拳游戏
# -*- coding: utf-8 -*-
'''
Created on 2018年12月17日
猜拳游戏 @author: Herrt灬凌夜
'''
import random; computer = random.choice(["石头", "剪刀", "布"]);
person = input("请出拳(石头,剪刀,布):");
if person == "石头" and computer == "石头" :
print("平局");
elif person == "剪刀" and computer == "剪刀" :
print("平局");
elif person == "布" and computer == "布" :
print("平局");
elif person == "石头" and computer == "剪刀" :
print("你赢了");
elif person == "剪刀" and computer == "布" :
print("你赢了");
elif person == "布" and computer == "石头" :
print("你赢了");
elif person == "石头" and computer == "剪刀" :
print("你输了");
elif person == "剪刀" and computer == "布" :
print("你输了");
elif person == "布" and computer == "石头" :
print("你输了");
 

上述代码虽然可以实现猜拳游戏,但是显得非常的啰嗦,我们对上述代码进行优化,并且可以让用户有更好的体验。

# -*- coding: utf-8 -*-
'''
Created on 2018年12月17日
猜拳游戏 @author: Herrt灬凌夜
'''
import random; computer = random.choice(["石头", "剪刀", "布"]);
winList = [["石头", "剪刀"], ["剪刀", "布"], ["布", "石头"]];
personList = ["石头", "剪刀", "布"]; hint = """
请出拳:
(0)石头
(1)剪刀
(3)布
""";
#获取下标
person = int(input(hint)); #字符串输出格式化
print("你出了%s,电脑出了%s" % (personList[person], computer));
if personList[person] == computer :
#\033[32;1m 开启颜色 \033[0m 关闭颜色
print("\033[32;1m平局\033[0m");
elif [personList[person], computer] in winList :
print("\033[31;1m你赢了\033[0m");
else :
print("\033[31;1m你输了\033[0m");
 

下面的代码明显就简洁了许多,而且可读性也强了许多。

今天主要学习了python的if 判断语句,在开发过程中判断语句还是比较常用的语句,所以要加强练习,毕竟学习一门新的语言,练习是必不可少的。

-------------------- END ---------------------


最后附上作者的微信公众号地址和博客地址


公众号:wuyouxin_gzh




Herrt灬凌夜:https://www.cnblogs.com/wuyx/

python语法(二)— 判断的更多相关文章

  1. Python语法二

    1.raw_input 输入 2.如果想查看某个关键字的用法,可以在命令行输入pydoc raw_input. 如果是windows,那么试一下 python -m pydoc raw_input 3 ...

  2. python语法_if判断

    age_of_princal = 56 guess_age = int(input("e guess a age:")) if guess_age == age_of_princa ...

  3. Python 基础语法(二)

    Python 基础语法(二) --------------------------------------------接 Python 基础语法(一) ------------------------ ...

  4. python学习第四讲,python基础语法之判断语句,循环语句

    目录 python学习第四讲,python基础语法之判断语句,选择语句,循环语句 一丶判断语句 if 1.if 语法 2. if else 语法 3. if 进阶 if elif else 二丶运算符 ...

  5. web前端学习python之第一章_基础语法(二)

    web前端学习python之第一章_基础语法(二) 前言:最近新做了一个管理系统,前端已经基本完成, 但是后端人手不足没人给我写接口,自力更生丰衣足食, 所以决定自学python自己给自己写接口哈哈哈 ...

  6. [python语法]python中如何判断一个集合是另一个集合的子集?

    问:python中如何判断一个集合是另一个集合的子集? 答:用issubset()方法 语法: A.issubset(B) 返回: True 如果A是B的子集. False 如果A不是B的子集. 样例 ...

  7. 【阿K学Python系列】一Python基础语法(二)

    前言 通过上一章的学习[阿k学Python]一Python入门(一),我们已经初步了解到Python是一种解释型.面向对象.动态数据类型的高级程序设计语言,当然也是一门脚本语言,像前端需要学习的Jav ...

  8. Python startswith() 函数 判断字符串开头

    Python startswith() 函数 判断字符串开头 函数:startswith() 作用:判断字符串是否以指定字符或子字符串开头 一.函数说明语法:string.startswith(str ...

  9. Python语法详解

    python语法解析 目录 python语法解析 一.顺序结构 二.分支结构 2.1 if 的基本语法 2.2 if 的基本应用 三.循环结构 3.1 while 语法 3.1.1 语法结束条件 3. ...

随机推荐

  1. POJ 2485 Highways( 最小生成树)

    题目链接 Description The islandnation of Flatopia is perfectly flat. Unfortunately, Flatopia has no publ ...

  2. APScheduler API -- apscheduler.triggers.cron

    apscheduler.triggers.cron API Trigger alias for add_job(): cron class apscheduler.triggers.cron.Cron ...

  3. 10款常见MySQL高可用方案选型解读【转】

    我们在考虑MySQL数据库的高可用架构时,主要考虑如下几方面: 如果数据库发生了宕机或者意外中断等故障,能尽快恢复数据库的可用性,尽可能的减少停机时间,保证业务不会因为数据库的故障而中断. 用作备份. ...

  4. MVVM模式的命令绑定

    命令绑定要达到的效果 命令绑定要关注的核心就是两个方面的问题,命令能否执行和命令怎么执行.也就是说当View中的一个Button绑定了ViewModel中一个命令后,什么时候这个Button是可用的, ...

  5. qt使用动态库(DLL)

    本文主要讲解在QT开发环境中如何使用VC生成的DLL及QT自身生成的DLL.至于其它情况本文不作讨论. 连接库分为2种 (1)动态连接库,通常有.h .lib .dll三个文件,功能实现在dll中 ( ...

  6. STL容器 vector,list,deque 性能比较

    C++的STL模板库中提供了3种容器类:vector,list,deque对于这三种容器,在觉得好用的同时,经常会让我们困惑应该选择哪一种来实现我们的逻辑.在少量数据操作的程序中随便哪一种用起来感觉差 ...

  7. 03 Go 1.3 Release Notes

    Go 1.3 Release Notes Introduction to Go 1.3 Changes to the supported operating systems and architect ...

  8. 26 About the go command go命令行

    About the go command  go命令行 Motivation Configuration versus convention Go's conventions Getting star ...

  9. 洛谷P3367并查集

    传送门 #include <iostream> #include <cstdio> #include <cstring> #include <algorith ...

  10. 使用html+css+js实现计算器

    使用html+css+js实现计算器,开启你的计算之旅吧 效果图: 代码如下,复制即可使用: <!DOCTYPE html><html lang="en"> ...