Python进阶 一行式

简易Web Server

通过网络快速共享文件,进入到你要共享文件的目录下并在命令行中运行下面的代码:

    # Python 2
    python -m SimpleHTTPServer

    # Python 3
    python -m http.server


快速漂亮的从文件打印出json数据

cat file.json | python -m json.tool


脚本性能分析

python -m cProfile my_script.py


CSV转换为json

# 更换csv_file.csv为你想要转换的csv文件
python -c "import csv,json;print json.dumps(list(csv.reader(open('csv_file.csv'))))"


列表辗平

    a_list = [[1, 2], [3, 4], [5, 6]]
    print(list(itertools.chain.from_iterable(a_list)))
    # Output: [1, 2, 3, 4, 5, 6]

    # or
    print(list(itertools.chain(*a_list)))
    # Output: [1, 2, 3, 4, 5, 6]


一行式的构造器

避免类初始化时大量重复的赋值语句

    class A(object):
        def __init__(self, a, b, c, d, e, f):
            self.__dict__.update({k: v for k, v in locals().items() if k != 'self'})



更多的一行方法(官方文档)

你可能感兴趣的:(Python进阶 一行式)