条件和条件语句


  1. 下面的值在作为布尔表达式的时候,会被解释器看作假(False):
    False  None    0    ""    ()    []    {}
  2. 条件执行和if语句
    name = raw_input('What is your name?\n')
    if name.endswith('Gumby'):
        print 'Hello, Gumby'
    else:
        print 'I donot know you!'
  3. elif 字句
    num = input("PLS input a num\n")
    if num > 0:
        print "The num is positive!"
    elif num < 0:
        print "The num is negetive!"
    else:
        print "The num is zero"

    结果:

    PLS input a num
    0
    The num is zero

更复杂的条件


  1. 比较预算符
    == ; < ; > ; >= ; <= ; != ; is ; is not ; in ; not in
  2. 相等运算符
    >>> 'foo' == 'foo'
    True
    >>> 'foo' == 'fo'
    False
  3. is:同一性运算符
    >>> x = y = [1,2,3]
    >>> z = [1,2,3]
    >>> x == y
    True
    >>> x == z
    True
    >>> x is y
    True
    >>> x is z
    False
    >>> id(x)
    19018656
    >>> id(y)
    19018656
    >>> id(z)
    11149144

    同一性可以理解为内存地址相同的数据。

  4. in:成员资格运算符
    >>> name = ['a','b','c']
    >>> 'a' in name
    True
  5. 字符串和序列比较
    字符串可以按照字母顺序排列进行比较。
    >>> 'beat'>'alpha'
    True

    程序会遍历比较

    >>> 'Forst'.lower() == 'F'.lower
    False
    >>> 'Forst'.lower() == 'Forst'.lower()
    True
  6. 布尔运算符
    略过
  7. 断言
    如果需要确保程序中的某个条件一定为真才能让程序正常工作的话,assert 语句就有用了,它可以在程序中置入检查点,条件后可以添加字符串,来解释断言:
    >>> age = -1
    >>> assert 0<age<100, 'the age must be crazy'
    
    Traceback (most recent call last):
      File "<pyshell#7>", line 1, in <module>
        assert 0<age<100, 'the age must be crazy'
    AssertionError: the age must be crazy

循环


  1. while
    它可以用来在任何条件为真的情况下重复执行一个代码块

    name = ''
    while not name:
        name = raw_input("input your name:\n")
    print "hello ,%s!" %name

    运行结果:

    input your name:
    world
    hello ,world!
  2. for循环
    >>> for number in range(101):
        print number
  3. 迭代工具
    ①并行迭代
    >>> names = ['anne','beth','george']
    >>> ages = [1,11,111]
    >>> zip(names,ages)
    [('anne', 1), ('beth', 11), ('george', 111)]
    >>> for name, age in zip(names,ages):
        print name, 'is',age
    
    anne is 1
    beth is 11
    george is 111

    ② 编号迭代

    enumerate函数

    ③ 翻转和排序迭代

    >>> sorted('hello,world!')
    ['!', ',', 'd', 'e', 'h', 'l', 'l', 'l', 'o', 'o', 'r', 'w']
    >>> list(reversed('hello,world!'))
    ['!', 'd', 'l', 'r', 'o', 'w', ',', 'o', 'l', 'l', 'e', 'h']
  4. 跳出循环
    ① break
    结束(跳出)循环可以使用break语句
    >>> from math import sqrt
    >>> for n in range(99,0,-1):
        root = sqrt(n)
        if root == int(root):
            print n
            break
    
    81

    ② continue

    ③ while True/break 习语

    while True:
        word = raw_input("PLS input a word:")
        if not word:break
        print 'the word is:%s'%word 

《Python基础教程(第二版)》学习笔记 -> 第五章 条件、循环 和 其他语句的更多相关文章

  1. &lt;&lt;Python基础教程&gt;&gt;学习笔记 | 第10章 | 充电时刻

    第10章 | 充电时刻 本章主要介绍模块及其工作机制 ------ 模块 >>> import math >>> math.sin(0) 0.0 模块是程序 一个简 ...

  2. &lt;&lt;Python基础教程&gt;&gt;学习笔记 | 第04章 | 字典

    第04章:字典 当索引不好用时 Python唯一的内建的映射类型,无序,但都存储在一个特定的键中.键能够使字符.数字.或者是元祖. ------ 字典使用: 表征游戏棋盘的状态,每一个键都是由坐标值组 ...

  3. &lt;&lt;Python基础教程&gt;&gt;学习笔记 | 第12章 | 图形用户界面

    Python支持的工具包非常多.但没有一个被觉得标准的工具包.用户选择的自由度大些.本章主要介绍最成熟的跨平台工具包wxPython.官方文档: http://wxpython.org/ ------ ...

  4. &lt;&lt;Python基础教程&gt;&gt;学习笔记 | 第11章 | 文件和素材

    打开文件 open(name[mode[,buffing]) name: 是强制选项,模式和缓冲是可选的 #假设文件不在.会报以下错误: >>> f = open(r'D:\text ...

  5. Jquery基础教程第二版学习记录

    本文仅为个人jquery基础的学习,简单的记录以备忘. 在线手册:http://www.php100.com/manual/jquery/第一章:jquery入门基础jquery知识:jquery能做 ...

  6. 第二章、元组和列表(python基础教程第二版 )

    最基本的数据结构是序列,序列中每个元素被分配一个序号-元素的位置,也称索引.第一个索引为0,最后一个元素索引为-1. python中包含6种内建的序列:元组.列表.字符串.unicode字符串.buf ...

  7. python基础教程第二版 第一章

    1.模块导入python以增强其功能的扩展:三种方式实现 (1). >>> Import math >>> math.floor(32.9) 32.0 #按照 模块 ...

  8. &lt;&lt;Python基础课程&gt;&gt;学习笔记 | 文章13章 | 数据库支持

    备注:本章介绍了比较简单,只是比较使用样品,主要假设是把握连接,利用数据库.和SQLite做演示样本 ------ Python数据库API 为了解决Python中各种数据库模块间的兼容问题,如今已经 ...

  9. python cookbook第三版学习笔记十五:property和描述

    8.5 私有属性: 在python中,如果想将私有数据封装到类的实例上,有两种方法:1 单下划线.2 双下划线 1 单下划线一般认为是内部实现,但是如果想从外部访问的话也是可以的 2 双下划线是则无法 ...

随机推荐

  1. Python之print语句

    print语句可以向屏幕上输出指定的文字.比如输出'hello, world',用代码实现如下: >>> print 'hello, world' 注意: 1.当我们在Python交 ...

  2. IIS (HTTP Error 500.21 - Internal Server Error)解决

    今天在测试网站的时候,在浏览器中输入http://localhost/时,发生如下错误: HTTP Error 500.21 - Internal Server Error Handler " ...

  3. Linux学习笔记(4)-文本编辑器vi的使用

    vi的三种编辑模式 命令模式(Command mode) 在此模式下可以控制光标的移动,可以删除字符,删除行,还可以对某个段落进行复制和移动 输入模式(Insert mode) 只有在此模式下,可以输 ...

  4. git初探

    1 Linux下Git和GitHub环境的搭建 第一步: 安装Git,使用命令 "sudo apt-get install git" 第二步: 到GitHub上创建GitHub帐号 ...

  5. 1047: [HAOI2007]理想的正方形 - BZOJ

    Description 有一个a*b的整数组成的矩阵,现请你从中找出一个n*n的正方形区域,使得该区域所有数中的最大值和最小值的差最小.Input 第一行为3个整数,分别表示a,b,n的值第二行至第a ...

  6. Educational Codeforces Round 5 A

    Problem A:http://codeforces.com/contest/616/problem/A A. Comparing Two Long Integers 果然还是我太天真了(长整数比较 ...

  7. 【mysql的设计与优化专题(4)】表的垂直拆分和水平拆分

    垂直拆分 垂直拆分是指数据表列的拆分,把一张列比较多的表拆分为多张表 通常我们按以下原则进行垂直拆分: 把不常用的字段单独放在一张表; 把text,blob等大字段拆分出来放在附表中; 经常组合查询的 ...

  8. IntelliJ idea 中使用Git

    1.要使用GitHub,首先你需要下载一个Git(地址:http://windows.github.com/)这里使用的是for Windows,然后安装完成会得到如下的一个目录:

  9. 173. Binary Search Tree Iterator

    题目: Implement an iterator over a binary search tree (BST). Your iterator will be initialized with th ...

  10. SGU 101

    SGU 101,郁闷,想出来算法,但是不知道是哪个地方的问题,wa在第四个test上. #include <iostream> #include <vector> #inclu ...