美文网首页
Python 的小技巧

Python 的小技巧

作者: dingjiandj | 来源:发表于2017-06-14 10:20 被阅读0次

    以下是我在Python中,多年来收集的一些有用的快捷键和工具。希望你能在其中找到对你有帮助的。

    <strong>交换变量</strong>

    x = 6
    y = 5
    
    x, y = y, x
    
    print x
    >>> 5
    print y
    >>> 6
    

    <strong>if 语句在行内</strong>

    print "Hello" if True else "World"
    >>> Hello
    

    <strong>连接</strong>

    下面的最后一种方式在绑定两个不同类型的对象时显得很酷。

    nfc = ["Packers", "49ers"]
    afc = ["Ravens", "Patriots"]
    print nfc + afc
    >>> ['Packers', '49ers', 'Ravens', 'Patriots']
    
    print str(1) + " world"
    >>> 1 world
    
    print `1` + " world"
    >>> 1 world
    
    print 1, "world"
    >>> 1 world
    print nfc, 1
    >>> ['Packers', '49ers'] 1
    

    <strong>计算技巧</strong>

    #向下取整
    print 5.0//2
    >>> 2
    # 2的5次方
    print 2**5
    >> 32
    

    <strong>注意浮点数的除法</strong>

    print .3/.1
    >>> 2.9999999999999996
    print .3//.1
    >>> 2.0
    

    <strong>数值比较</strong>

    x = 2
    if 3 > x > 1:
       print x
    >>> 2
    if 1 < x > 0:
       print x
    >>> 2
    

    <strong>两个列表同时迭代</strong>

    nfc = ["Packers", "49ers"]
    afc = ["Ravens", "Patriots"]
    for teama, teamb in zip(nfc, afc):
         print teama + " vs. " + teamb
    >>> Packers vs. Ravens
    >>> 49ers vs. Patriots
    

    <strong>带索引的列表迭代</strong>

    teams = ["Packers", "49ers", "Ravens", "Patriots"]
    for index, team in enumerate(teams):
        print index, team
    >>> 0 Packers
    >>> 1 49ers
    >>> 2 Ravens
    >>> 3 Patriots
    

    <strong>列表推导</strong>

    已知一个列表,刷选出偶数列表方法:

    numbers = [1,2,3,4,5,6]
    even = []
    for number in numbers:
        if number%2 == 0:
            even.append(number)
    

    <strong>用下面的代替</strong>

    numbers = [1,2,3,4,5,6]
    even = [number for number in numbers if number%2 == 0]
    

    <strong>字典推导</strong>

    teams = ["Packers", "49ers", "Ravens", "Patriots"]
    print {key: value for value, key in enumerate(teams)}
    >>> {'49ers': 1, 'Ravens': 2, 'Patriots': 3, 'Packers': 0}
    
    

    <strong>初始化列表的值</strong>

    items = [0]*3
    print items
    >>> [0,0,0]
    

    <strong>将列表转换成字符串</strong>

    teams = ["Packers", "49ers", "Ravens", "Patriots"]
    print ", ".join(teams)
    >>> 'Packers, 49ers, Ravens, Patriots'
    

    <strong>从字典中获取元素</strong>

    不要用下列的方式

    data = {'user': 1, 'name': 'Max', 'three': 4}
    try:
       is_admin = data['admin']
    except KeyError:
       is_admin = False
    

    替换为

    data = {'user': 1, 'name': 'Max', 'three': 4}
    is_admin = data.get('admin', False)
    

    <strong>获取子列表</strong>

    x = [1,2,3,4,5,6]
    #前3个
    print x[:3]
    >>> [1,2,3]
    #中间4个
    print x[1:5]
    >>> [2,3,4,5]
    #最后3个
    print x[-3:]
    >>> [4,5,6]
    #奇数项
    print x[::2]
    >>> [1,3,5]
    #偶数项
    print x[1::2]
    >>> [2,4,6]
    

    <strong>60个字符解决FizzBuzz</strong>

    前段时间Jeff Atwood 推广了一个简单的编程练习叫FizzBuzz,问题引用如下:

    写一个程序,打印数字1到100,3的倍数打印“Fizz”来替换这个数,5的倍数打印“Buzz”,对于既是3的倍数又是5的倍数的数字打印“FizzBuzz”。

    这里有一个简短的方法解决这个问题:

    for x in range(101):print"fizz"[x%3*4::]+"buzz"[x%5*4::]or x
    

    <strong>集合</strong>

    用到Counter

    from collections import Counter
    print Counter("hello")
    >>> Counter({'l': 2, 'h': 1, 'e': 1, 'o': 1})
    

    <strong>迭代工具</strong>

    collections库一样,还有一个库叫itertools

    from itertools import combinations
    teams = ["Packers", "49ers", "Ravens", "Patriots"]
    for game in combinations(teams, 2):
        print game
    >>> ('Packers', '49ers')
    >>> ('Packers', 'Ravens')
    >>> ('Packers', 'Patriots')
    >>>  ('49ers', 'Ravens')
    >>>  ('49ers', 'Patriots')
    >>>  ('Ravens', 'Patriots')
    

    在python中,TrueFalse是全局变量,因此:

    False = True
    if False:
       print "Hello"
    else:
       print "World"
    
    >>> Hello
    

    相关文章

      网友评论

          本文标题:Python 的小技巧

          本文链接:https://www.haomeiwen.com/subject/vcrsqxtx.html