Skip to content Skip to main navigation Skip to footer

Python: 深入Python流程控制

1. if 语句

# 求x的绝对值
x = int(input("Please enter an interge: >"))
if x < 0 :
    print(-x)
elif x == 0:
    print(0)
else:
    print(x) &#91;/code&#93;
<ol>
<li>
<b1>if</b1>或      <b1>elif</b1>后的条件语句没有括号,条件语句后接冒号。    </li>
<li>
<b1>if</b1>...      <b1>elif</b1>...      <b1>elif</b1>...序列用于替代其他语言中的      <b1>switch</b1>或      <b1>case</b1>语句。    </li>
</ol>
<h2>2. for 语句</h2>
<ol>
<li>
<p class="no-text-indent">
Python中的
for
语句依据任意序列(链表或字符串)中的子项,按它们在序列中的顺序来进行迭代。      </p>

a = ['cat', 'window', 'defenestrate']
for x in a:
    print(x, len(x)) 
  • 不要在遍历序列的同时,改变序列的大小,如果你非要这么做,那就在for循环时遍历序列的一个副本

    a = ['cat', 'window', 'defenestrate']
    for x in a[:]:
        if len(x) > 6:
            a.insert(0,x) 
  • 如果需要一个数值序列,内置函数
    range()
    会很方便,
    range(start,end,step)
    会按步长为step,生成一个[start, end)范围内的等差数列。

    a = ['Mary', 'had', 'a', 'litte', 'lamb']
    for i in range(len(a)):
        print(i, a[i]) 
  • 在序列循环时,索引位置与对应值可以使用
    enumerate()
    函数同时得到:

    a = ['Mary', 'had', 'a', 'litte', 'lamb']
    for i,v in enumerate(a):
        print(i,v) 
  • 在字典循环时,关键字与对应的值可以使用
    items()
    方法同时解读出来:

    knights = {'gallahad':'the pure', 'robin':'the brave'}
    for k,v in knights.items():
        print(k,v) 
  • 同时循环两个或更多的序列,可以使用
    zip()
    整体打包:

    question = ['name', 'quest', 'favorite color']
    answers = ['lancelot', 'the holy grail', 'blue']
    for q,a in zip(question, answers):
        print('What is your {0}? It is {1}.'.format(q,a)) 
  • 需要逆向循环的话,先正向定位序列,然后调用
    reversed()
    函数:

    for i in range(9,-1,-1):
        print(i,end = ',')
    for i in reversed(range(0,10)):
        print(i,end = ',') 
  • 需要按排序后的顺序循环序列的话,使用
    sorted()
    函数,它不会改动原序列,而是生成了一个新的已排序的序列:

    basket = ['apple', 'orange', 'apple', 'pear', 'orange', 'banana']
    for fruit in sorted(set(basket)):
        print(fruit) 
  • 3. while 语句

    a,b = 0,1
    while b < 100:
        print(b,end=',')
        a,b = b,a+b

    4. break和continue语句,以及循环中的else语句

    breakcontinue语句与C语言中使用方法类似。

    循环中可以有一个 else子句;它在循环迭代完整个列表(对于 for)或执行条件为false(对于 while)时执行,但循环被 break中止的情况下不会执行。

    for i in range(0,10):
        print(i)
    else:
        print("end loop!>") 
    >>> for n in range(2, 10):
    ...     for x in range(2, n):
    ...         if n % x == 0:
    ...             print(n, 'equals', x, '*', n//x)
    ...             break
    ...     else:
    ...         # loop fell through without finding a factor
    ...         print(n, 'is a prime number')
    ...
    2 is a prime number
    3 is a prime number
    4 equals 2 * 2
    5 is a prime number
    6 equals 2 * 3
    7 is a prime number
    8 equals 2 * 4
    9 equals 3 * 3 

    上面这是正确的代码,看仔细: else语句是属于 for循环中的代码,而不是 if语句。

    5. 条件控制

    1. 比较运算符: innot in,以及 isis not
    2. 逻辑操作符: and、or not`

    6. 序列的比较

    序列对象可以与相同类型的其它对象比较。比较操作按 字典序 进行:首先比较前两个元素,如果不同,就决定了比较的结果;如果相同,就比较后两个元素,依此类推,直到所有序列都完成比较。如果两个元素本身就是同样类 型的序列,就递归字典序比较。如果两个序列的所有子项都相等,就认为序列相等。如果一个序列是另一个序列的初始子序列,较短的一个序列就小于另一个。字符 串的字典序按照单字符的 ASCII 顺序。下面是同类型序列之间比较的一些例子:

    (1, 2, 3) < (1, 2, 4) [1, 2, 3] < [1, 2, 4] 'ABC' < 'C' < 'Pascal' < 'Python' (1, 2, 3, 4) < (1, 2, 4) (1, 2) < (1, 2, -1) (1, 2, 3) == (1.0, 2.0, 3.0) (1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4) [/code] 原文:http://www.cnblogs.com/ronny/p/4511696.html

    0 Comments

    There are no comments yet

    Leave a comment

    Your email address will not be published.