在使用Python多年以后,我偶然发现了一些我们过去不知道的功能和特性。一些可以说是非常有用,但却没有充分利用。考虑到这一点,我编辑了一些的你应该了解的Pyghon功能特色。

 带任意数量参数的函数

  你可能已经知道了Python允许你定义可选参数。但还有一个方法,可以定义函数任意数量的参数。

  首先,看下面是一个只定义可选参数的例子

def function(arg1="",arg2=""): 

    print "arg1: {0}".format(arg1) 

    print "arg2: {0}".format(arg2) 

function("Hello", "World") 

# prints args1: Hello 

# prints args2: World 

function() 

# prints args1: 

# prints args2:

  现在,让我们看看怎么定义一个可以接受任意参数的函数。我们利用元组来实现。

def foo(*args): # just use "*" to collect all remaining arguments into a tuple 

    numargs = len(args) 

    print "Number of arguments: {0}".format(numargs) 

    for i, x in enumerate(args): 

        print "Argument {0} is: {1}".format(i,x) 

foo() 

# Number of arguments: 0 

foo("hello") 

# Number of arguments: 1 

# Argument 0 is: hello 

foo("hello","World","Again") 

# Number of arguments: 3 

# Argument 0 is: hello 

# Argument 1 is: World 

# Argument 2 is: Again

 使用Glob()查找文件

  大多Python函数有着长且具有描述性的名字。但是命名为glob()的函数你可能不知道它是干什么的除非你从别处已经熟悉它了。

  它像是一个更强大版本的listdir()函数。它可以让你通过使用模式匹配来搜索文件。

import glob 

# get all py files 

files = glob.glob('*.py') 

print files 

# Output 

# ['arg.py', 'g.py', 'shut.py', 'test.py']

  你可以像下面这样查找多个文件类型:

import itertools as it, glob 

def multiple_file_types(*patterns): 

    return it.chain.from_iterable(glob.glob(pattern) for pattern in patterns) 

for filename in multiple_file_types("*.txt", "*.py"): # add as many filetype arguements 

    print filename 

# output 

#=========# 

# test.txt 

# arg.py 

# g.py 

# shut.py 

# test.py

  如果你想得到每个文件的绝对路径,你可以在返回值上调用realpath()函数:

import itertools as it, glob, os 

def multiple_file_types(*patterns): 

    return it.chain.from_iterable(glob.glob(pattern) for pattern in patterns) 

for filename in multiple_file_types("*.txt", "*.py"): # add as many filetype arguements 

    realpath = os.path.realpath(filename) 

    print realpath 

# output 

#=========# 

# C:\xxx\pyfunc\test.txt 

# C:\xxx\pyfunc\arg.py 

# C:\xxx\pyfunc\g.py 

# C:\xxx\pyfunc\shut.py 

# C:\xxx\pyfunc\test.py

 调试

  下面的例子使用inspect模块。该模块用于调试目的时是非常有用的,它的功能远比这里描述的要多。

  这篇文章不会覆盖这个模块的每个细节,但会展示给你一些用例。

import logging, inspect 

logging.basicConfig(level=logging.INFO, 

    format='%(asctime)s %(levelname)-8s %(filename)s:%(lineno)-4d: %(message)s', 

    datefmt='%m-%d %H:%M', 

    ) 

logging.debug('A debug message') 

logging.info('Some information') 

logging.warning('A shot across the bow') 

def test(): 

    frame,filename,line_number,function_name,lines,index=\ 

        inspect.getouterframes(inspect.currentframe())[1] 

    print(frame,filename,line_number,function_name,lines,index) 

test() 

# Should print the following (with current date/time of course) 

#10-19 19:57 INFO     test.py:9   : Some information 

#10-19 19:57 WARNING  test.py:10  : A shot across the bow 

#(, 'C:/xxx/pyfunc/magic.py', 16, '', ['test()\n'], 0)

 生成唯一ID

  在有些情况下你需要生成一个唯一的字符串。我看到很多人使用md5()函数来达到此目的,但它确实不是以此为目的。

  其实有一个名为uuid()的Python函数是用于这个目的的。

import uuid 

result = uuid.uuid1() 

print result 

# output => various attempts 

# 9e177ec0-65b6-11e3-b2d0-e4d53dfcf61b 

# be57b880-65b6-11e3-a04d-e4d53dfcf61b 

# c3b2b90f-65b6-11e3-8c86-e4d53dfcf61b

  你可能会注意到,即使字符串是唯一的,但它们后边的几个字符看起来很相似。这是因为生成的字符串与电脑的MAC地址是相联系的。

  为了减少重复的情况,你可以使用这两个函数。

import hmac,hashlib 

key=''

data='a'

print hmac.new(key, data, hashlib.sha256).hexdigest() 

m = hashlib.sha1() 

m.update("The quick brown fox jumps over the lazy dog") 

print m.hexdigest() 

# c6e693d0b35805080632bc2469e1154a8d1072a86557778c27a01329630f8917 

# 2fd4e1c67a2d28fced849ee1bb76e7391b93eb12

 序列化

  你曾经需要将一个复杂的变量存储在数据库或文本文件中吧?你不需要想一个奇特的方法将数组或对象格转化为式化字符串,因为Python已经提供了此功能。

import pickle 

variable = ['hello', 42, [1,'two'],'apple'] 

# serialize content 

file = open('serial.txt','w') 

serialized_obj = pickle.dumps(variable) 

file.write(serialized_obj) 

file.close() 

# unserialize to produce original content 

target = open('serial.txt','r') 

myObj = pickle.load(target) 

print serialized_obj 

print myObj 

#output 

# (lp0 

# S'hello' 

# p1 

# aI42 

# a(lp2 

# I1 

# aS'two' 

# p3 

# aaS'apple' 

# p4 

# a. 

# ['hello', 42, [1, 'two'], 'apple']

  这是一个原生的Python序列化方法。然而近几年来JSON变得流行起来,Python添加了对它的支持。现在你可以使用JSON来编解码。

import json 

variable = ['hello', 42, [1,'two'],'apple'] 

print "Original {0} - {1}".format(variable,type(variable)) 

# encoding 

encode = json.dumps(variable) 

print "Encoded {0} - {1}".format(encode,type(encode)) 

#deccoding 

decoded = json.loads(encode) 

print "Decoded {0} - {1}".format(decoded,type(decoded)) 

# output 

# Original ['hello', 42, [1, 'two'], 'apple'] - <type 'list'=""> 

# Encoded ["hello", 42, [1, "two"], "apple"] - <type 'str'=""> 

# Decoded [u'hello', 42, [1, u'two'], u'apple'] - <type 'list'="">

  这样更紧凑,而且最重要的是这样与JavaScript和许多其他语言兼容。然而对于复杂的对象,其中的一些信息可能丢失。

 压缩字符

  当谈起压缩时我们通常想到文件,比如ZIP结构。在Python中可以压缩长字符,不涉及任何档案文件。

import zlib 

string =  """   Lorem ipsum dolor sit amet, consectetur 

                adipiscing elit. Nunc ut elit id mi ultricies 

                adipiscing. Nulla facilisi. Praesent pulvinar, 

                sapien vel feugiat vestibulum, nulla dui pretium orci, 

                non ultricies elit lacus quis ante. Lorem ipsum dolor 

                sit amet, consectetur adipiscing elit. Aliquam 

                pretium ullamcorper urna quis iaculis. Etiam ac massa 

                sed turpis tempor luctus. Curabitur sed nibh eu elit 

                mollis congue. Praesent ipsum diam, consectetur vitae 

                ornare a, aliquam a nunc. In id magna pellentesque 

                tellus posuere adipiscing. Sed non mi metus, at lacinia 

                augue. Sed magna nisi, ornare in mollis in, mollis 

                sed nunc. Etiam at justo in leo congue mollis. 

                Nullam in neque eget metus hendrerit scelerisque 

                eu non enim. Ut malesuada lacus eu nulla bibendum 

                id euismod urna sodales. """

print "Original Size: {0}".format(len(string)) 

compressed = zlib.compress(string) 

print "Compressed Size: {0}".format(len(compressed)) 

decompressed = zlib.decompress(compressed) 

print "Decompressed Size: {0}".format(len(decompressed)) 

# output 

# Original Size: 1022 

# Compressed Size: 423 

# Decompressed Size: 1022

 注册Shutdown函数

  有可模块叫atexit,它可以让你在脚本运行完后立马执行一些代码。

  假如你想在脚本执行结束时测量一些基准数据,比如运行了多长时间:

import atexit 

import time 

import math 

def microtime(get_as_float = False) : 

    if get_as_float: 

        return time.time() 

    else: 

        return '%f %d' % math.modf(time.time()) 

start_time = microtime(False) 

atexit.register(start_time) 

def shutdown(): 

    global start_time 

    print "Execution took: {0} seconds".format(start_time) 

atexit.register(shutdown) 

# Execution took: 0.297000 1387135607 seconds 

# Error in atexit._run_exitfuncs: 

# Traceback (most recent call last): 

#   File "C:\Python27\lib\atexit.py", line 24, in _run_exitfuncs 

#     func(*targs, **kargs) 

# TypeError: 'str' object is not callable 

# Error in sys.exitfunc: 

# Traceback (most recent call last): 

#   File "C:\Python27\lib\atexit.py", line 24, in _run_exitfuncs 

#     func(*targs, **kargs) 

# TypeError: 'str' object is not callable

  打眼看来很简单。只需要将代码添加到脚本的最底层,它将在脚本结束前运行。但如果脚本中有一个致命错误或者脚本被用户终止,它可能就不运行了。

  当你使用atexit.register()时,你的代码都将执行,不论脚本因为什么原因停止运行。

 结论

  你是否意识到那些不是广为人知Python特性很有用?请在评论处与我们分享。谢谢你的阅读!

你需要知道的、有用的 Python 功能和特点的更多相关文章

  1. [技术翻译]您应该知道的13个有用的JavaScript数组技巧

    本次预计翻译三篇文章如下: 01.[译]9个可以让你在2020年成为前端专家的项目 02.[译]预加载响应式图像,从Chrome 73开始实现 03.[译]您应该知道的13个有用的JavaScript ...

  2. Python小白需要知道的 20 个骚操作!

    Python小白需要知道的 20 个骚操作! Python 是一个解释型语言,可读性与易用性让它越来越热门.正如 Python 之禅中所述: 优美胜于丑陋,明了胜于晦涩. 在你的日常编码中,以下技巧可 ...

  3. PHP程序员应该知道的15个库

    最几年,PHP已经成为最受欢迎的一种有效服务器端编程语言.据2013年发布的一份调查报告显示,PHP语言已经被安装在全球超过2.4亿个网站以及210万台Web服务器之上.PHP代表超文本预处理器,它主 ...

  4. 理工科应该的知道的C/C++数学计算库(转)

    理工科应该的知道的C/C++数学计算库(转) 作为理工科学生,想必有限元分析.数值计算.三维建模.信号处理.性能分析.仿真分析...这些或多或少与我们常用的软件息息相关,假如有一天你只需要这些大型软件 ...

  5. 希望早几年知道的5个Unix命令

    原文: http://spin.atomicobject.com/2013/09/09/5-unix-commands/ 希望早几年知道的5个Unix命令 使用*nix系统已经有一段时间了.但是还是有 ...

  6. 每个极客都应该知道的Linux技巧

    每个极客都应该知道的Linux技巧 2014/03/07 | 分类: IT技术 | 0 条评论 | 标签: LINUX 分享到:18 本文由 伯乐在线 - 欣仔 翻译自 TuxRadar Linux. ...

  7. 嵌入式程序员应知道的0x10个基本问题

     来源:网络 嵌入式程序员应知道的0x10个基本问题 1 . 用预处理指令#define 声明一个常数,用以表明1年中有多少秒(忽略闰年问题)#define SECONDS_PER_YEAR (60 ...

  8. C#开发人员应该知道的13件事情

    本文讲述了C#开发人员应该了解到的13件事情,希望对C#开发人员有所帮助. 1. 开发过程 开发过程是错误和缺陷开始的地方.使用工具可以帮助你在发布之后,解决掉一些问题. 编码标准 遵照编码标准可以编 ...

  9. 我们必须要知道的RESTful服务最佳实践

    看过很多RESTful相关的文章总结,参齐不齐,结合工作中的使用,非常有必要归纳一下关于RESTful架构方式了,RESTful只是一种架构方式的约束,给出一种约定的标准,完全严格遵守RESTful标 ...

随机推荐

  1. elasticsearch-.yml(中文配置详解)

    此elasticsearch-.yml配置文件,是在$ES_HOME/config/下 elasticsearch-.yml(中文配置详解) # ======================== El ...

  2. 解决在ubuntu环境下, sublime不能输入中文的问题

    sublime text很好用,但是ubuntu下不能输入中文,这是一个很大的问题.网上已经有很多方法,这里将我自己使用的方法记录总结一下 首先,将你的操作系统升级到最新版: sudo apt-get ...

  3. android studio 添加有趣的注释模板 佛祖保佑无bug等

    韩梦飞沙  韩亚飞  313134555@qq.com  yue31313  han_meng_fei_sha 汉化包 百度云盘 下载地址:https://pan.baidu.com/s/1pLjwy ...

  4. 「HNOI2018」毒瘤

    「HNOI2018」毒瘤 解题思路 先考虑只有一棵树的情况,经典独立集计数. \[ dp[u][0]=\prod (dp[v][0]+dp[v][1]) \\ dp[u][1]=\prod dp[v] ...

  5. 【Floyd矩阵乘法】BZOJ1706- [usaco2007 Nov]relays 奶牛接力跑

    [题目大意] 给出一张无向图,求出恰巧经过n条边的最短路. [思路] 首先题目中只有100条边,却给出了10000个点(实际上最多只能有200个),离散化一下. 后面就是Floyd的新姿势,以前看过的 ...

  6. Codeforces Round #357 (Div. 2) E. Runaway to a Shadow 计算几何

    E. Runaway to a Shadow 题目连接: http://www.codeforces.com/contest/681/problem/E Description Dima is liv ...

  7. SQLite 客户端管理工具

    SQLite 客户端管理工具 SQLite Expert Personal 3.5.79.2499 下载地址:http://www.onlinedown.net/soft/117987.htm SQL ...

  8. [转载] 关于matlab GUI的一点心得

    转载自 落落轻尘 [Fig文件方式,即使用菜单File->New->GUI来设计界面] 首先值得注意的是,在低版本matlab上制作的含GUI的m文件一般不能在高版本的matlab上面运行 ...

  9. IOS开发之深拷贝与浅拷贝(mutableCopy与Copy)详解

    copy与retain的区别: copy是创建一个新对象,retain是创建一个指针,引用对象计数加1.Copy属性表示两个对象内容相同,新的对象retain为1 ,与旧有对象的引用计数无关,旧有对象 ...

  10. Http请求之基于HttpUrlConnection,支持Header,Body传值,支持Multipart上传文件:

    Http请求之基于HttpUrlConnection,支持Header,Body传值,支持Multipart上传文件: public static String post(String actionU ...