前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python技巧分享(五)

python技巧分享(五)

作者头像
俊采
发布2018-05-15 14:19:20
6240
发布2018-05-15 14:19:20
举报
文章被收录于专栏:LEo的网络日志LEo的网络日志

31 Jan 2018 python技巧分享(五)

这是一个系列文章,主要分享python的使用建议和技巧,每次分享3点,希望你能有所收获。

1 如何在命令行查看python文档

代码语言:javascript
复制
$ pydoc sys.exit
Help on built-in function exit in sys:

sys.exit = exit(...)
    exit([status])

    Exit the interpreter by raising SystemExit(status).
    If the status is omitted or None, it defaults to zero (i.e., success).
    If the status is an integer, it will be used as the system exit status.
    If it is another kind of object, it will be printed and the system
    exit status will be one (i.e., failure).

$ pydoc sorted
Help on built-in function sorted in module __builtin__:

sorted(...)
    sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list

第一个命令pydoc sys.exit查看sys模块的exit函数文档信息,第二个命令pydoc sorted查看了内建函数sorted的文档信息。

2 如何将python代码打包成独立的二进制文件

需要编译的python代码如下:

代码语言:javascript
复制
#!/usr/bin/env python
# -*- coding: utf-8 -*-

print 'hello, world!'

将python代码打包成独立的二进制文件步骤:

代码语言:javascript
复制
$ python hello_world.py
hello, world!
$ pip install pyinstaller
$ pyinstaller -F hello_world.py
$ cd ./dist/
root@master:dist$ ./hello_world
hello, world!

我解释下上面命令行,首先使用python直接运行需要编译成独立二进制文件的hello_world.py,程序正常打印hello, world!,然后使用pip安装pyinstaller,通过pyinstaller将hello_world.py打包成独立的二进制文件,然后进入当前目录下的dist目录,运行打包成功的二进制文件hello_world,程序正常打印hello, world!。除了pyinstaller,还有其他工具可以实现类似功能,比如py2execx_Freeze,如果感兴趣,可以看看。

3 如何自动格式化python代码

格式化前的demo.py代码:

代码语言:javascript
复制
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import math, sys;

def example1():
    ####This is a long comment. This should be wrapped to fit within 72 characters.
    some_tuple=(   1,2, 3,'a'  );
    some_variable={'long':'Long code lines should be wrapped within 79 characters.',
    'other':[math.pi, 100,200,300,9876543210,'This is a long string that goes on'],
    'more':{'inner':'This whole logical line should be wrapped.',some_tuple:[1,
    20,300,40000,500000000,60000000000000000]}}
    return (some_tuple, some_variable)
def example2(): return {'has_key() is deprecated':True}.has_key({'f':2}.has_key(''));
class Example3(   object ):
    def __init__    ( self, bar ):
     #Comments should have a space after the hash.
     if bar : bar+=1;  bar=bar* bar   ; return bar
     else:
                    some_string = """
                       Indentation in multiline strings should not be touched.
Only actual code should be reindented.
"""
                    return (sys.path, some_string)

安装autopep8,并使用autopep8格式化demo.py代码:

代码语言:javascript
复制
$ pip install autopep8
$ autopep8 --in-place --aggressive --aggressive demo.py

格式化后的demo.py代码:

代码语言:javascript
复制
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import math
import sys


def example1():
    # This is a long comment. This should be wrapped to fit within 72
    # characters.
    some_tuple = (1, 2, 3, 'a')
    some_variable = {
        'long': 'Long code lines should be wrapped within 79 characters.',
        'other': [
            math.pi,
            100,
            200,
            300,
            9876543210,
            'This is a long string that goes on'],
        'more': {
            'inner': 'This whole logical line should be wrapped.',
            some_tuple: [
                1,
                20,
                300,
                40000,
                500000000,
                60000000000000000]}}
    return (some_tuple, some_variable)


def example2(): return ('' in {'f': 2}) in {'has_key() is deprecated': True};


class Example3(object):
    def __init__(self, bar):
        # Comments should have a space after the hash.
        if bar:
            bar += 1
            bar = bar * bar
            return bar
        else:
            some_string = """
                       Indentation in multiline strings should not be touched.
Only actual code should be reindented.
"""
            return (sys.path, some_string)

可以看到,经过autopep8格式化后的python代码更易读,也符合python的代码风格,这里的示例代码使用autopep8官方例子,详情请戳https://pypi.python.org/pypi/autopep8

LEo at 22:59

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 31 Jan 2018 python技巧分享(五)
    • 1 如何在命令行查看python文档
      • 2 如何将python代码打包成独立的二进制文件
        • 3 如何自动格式化python代码
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档