转载:你需要知道的、有用的 Python 功能和特点

文章出处:http://www.oschina.net/translate/python-functions

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

带任意数量参数的函数



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

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

 1 def function(arg1="",arg2=""):
 2     print "arg1: {0}".format(arg1)
 3     print "arg2: {0}".format(arg2)
 4
 5 function("Hello", "World")
 6 # prints args1: Hello
 7 # prints args2: World
 8
 9 function()
10 # prints args1:
11 # prints args2:

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

 1 def foo(*args): # just use "*" to collect all remaining arguments into a tuple
 2     numargs = len(args)
 3     print "Number of arguments: {0}".format(numargs)
 4     for i, x in enumerate(args):
 5         print "Argument {0} is: {1}".format(i,x)
 6
 7 foo()
 8 # Number of arguments: 0
 9
10 foo("hello")
11 # Number of arguments: 1
12 # Argument 0 is: hello
13
14 foo("hello","World","Again")
15 # Number of arguments: 3
16 # Argument 0 is: hello
17 # Argument 1 is: World
18 # Argument 2 is: Again

使用Glob()查找文件



大多Python函数有着长且具有描述性的名字。但是命名为glob()的函数你可能不知道它是干什么的除非你从别处已经熟悉它了。
它像是一个更强大版本的listdir()函数。它可以让你通过使用模式匹配来搜索文件。

1 import glob
2
3 # get all py files
4 files = glob.glob(‘*.py‘)
5 print files
6
7 # Output
8 # [‘arg.py‘, ‘g.py‘, ‘shut.py‘, ‘test.py‘]

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

 1 import itertools as it, glob
 2
 3 def multiple_file_types(*patterns):
 4     return it.chain.from_iterable(glob.glob(pattern) for pattern in patterns)
 5
 6 for filename in multiple_file_types("*.txt", "*.py"): # add as many filetype arguements
 7     print filename
 8
 9 # output
10 #=========#
11 # test.txt
12 # arg.py
13 # g.py
14 # shut.py
15 # test.py

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

 1 import itertools as it, glob, os
 2
 3 def multiple_file_types(*patterns):
 4     return it.chain.from_iterable(glob.glob(pattern) for pattern in patterns)
 5
 6 for filename in multiple_file_types("*.txt", "*.py"): # add as many filetype arguements
 7     realpath = os.path.realpath(filename)
 8     print realpath
 9
10 # output
11 #=========#
12 # C:\xxx\pyfunc\test.txt
13 # C:\xxx\pyfunc\arg.py
14 # C:\xxx\pyfunc\g.py
15 # C:\xxx\pyfunc\shut.py
16 # C:\xxx\pyfunc\test.py

调试



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

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

 1 import logging, inspect
 2
 3 logging.basicConfig(level=logging.INFO,
 4     format=‘%(asctime)s %(levelname)-8s %(filename)s:%(lineno)-4d: %(message)s‘,
 5     datefmt=‘%m-%d %H:%M‘,
 6     )
 7 logging.debug(‘A debug message‘)
 8 logging.info(‘Some information‘)
 9 logging.warning(‘A shot across the bow‘)
10
11 def test():
12     frame,filename,line_number,function_name,lines,index=13         inspect.getouterframes(inspect.currentframe())[1]
14     print(frame,filename,line_number,function_name,lines,index)
15
16 test()
17
18 # Should print the following (with current date/time of course)
19 #10-19 19:57 INFO     test.py:9   : Some information
20 #10-19 19:57 WARNING  test.py:10  : A shot across the bow
21 #(, ‘C:/xxx/pyfunc/magic.py‘, 16, ‘‘, [‘test()\n‘], 0)

生成唯一ID



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

1 import uuid
2
3 result = uuid.uuid1()
4 print result
5
6 # output => various attempts
7 # 9e177ec0-65b6-11e3-b2d0-e4d53dfcf61b
8 # be57b880-65b6-11e3-a04d-e4d53dfcf61b
9 # c3b2b90f-65b6-11e3-8c86-e4d53dfcf61b

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

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

 1 import hmac,hashlib
 2 key=‘1‘
 3 data=‘a‘
 4 print hmac.new(key, data, hashlib.sha256).hexdigest()
 5
 6 m = hashlib.sha1()
 7 m.update("The quick brown fox jumps over the lazy dog")
 8 print m.hexdigest()
 9
10 # c6e693d0b35805080632bc2469e1154a8d1072a86557778c27a01329630f8917
11 # 2fd4e1c67a2d28fced849ee1bb76e7391b93eb12

序列化



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

 1 import pickle
 2
 3 variable = [‘hello‘, 42, [1,‘two‘],‘apple‘]
 4
 5 # serialize content
 6 file = open(‘serial.txt‘,‘w‘)
 7 serialized_obj = pickle.dumps(variable)
 8 file.write(serialized_obj)
 9 file.close()
10
11 # unserialize to produce original content
12 target = open(‘serial.txt‘,‘r‘)
13 myObj = pickle.load(target)
14
15 print serialized_obj
16 print myObj
17
18 #output
19 # (lp0
20 # S‘hello‘
21 # p1
22 # aI42
23 # a(lp2
24 # I1
25 # aS‘two‘
26 # p3
27 # aaS‘apple‘
28 # p4
29 # a.
30 # [‘hello‘, 42, [1, ‘two‘], ‘apple‘]

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

 1 import json
 2
 3 variable = [‘hello‘, 42, [1,‘two‘],‘apple‘]
 4 print "Original {0} - {1}".format(variable,type(variable))
 5
 6 # encoding
 7 encode = json.dumps(variable)
 8 print "Encoded {0} - {1}".format(encode,type(encode))
 9
10 #deccoding
11 decoded = json.loads(encode)
12 print "Decoded {0} - {1}".format(decoded,type(decoded))
13
14 # output
15
16 # Original [‘hello‘, 42, [1, ‘two‘], ‘apple‘] - <type ‘list‘="">
17 # Encoded ["hello", 42, [1, "two"], "apple"] - <type ‘str‘="">
18 # Decoded [u‘hello‘, 42, [1, u‘two‘], u‘apple‘] - <type ‘list‘="">

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

压缩字符



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

 1 import zlib
 2
 3 string =  """   Lorem ipsum dolor sit amet, consectetur
 4                 adipiscing elit. Nunc ut elit id mi ultricies
 5                 adipiscing. Nulla facilisi. Praesent pulvinar,
 6                 sapien vel feugiat vestibulum, nulla dui pretium orci,
 7                 non ultricies elit lacus quis ante. Lorem ipsum dolor
 8                 sit amet, consectetur adipiscing elit. Aliquam
 9                 pretium ullamcorper urna quis iaculis. Etiam ac massa
10                 sed turpis tempor luctus. Curabitur sed nibh eu elit
11                 mollis congue. Praesent ipsum diam, consectetur vitae
12                 ornare a, aliquam a nunc. In id magna pellentesque
13                 tellus posuere adipiscing. Sed non mi metus, at lacinia
14                 augue. Sed magna nisi, ornare in mollis in, mollis
15                 sed nunc. Etiam at justo in leo congue mollis.
16                 Nullam in neque eget metus hendrerit scelerisque
17                 eu non enim. Ut malesuada lacus eu nulla bibendum
18                 id euismod urna sodales. """
19
20 print "Original Size: {0}".format(len(string))
21
22 compressed = zlib.compress(string)
23 print "Compressed Size: {0}".format(len(compressed))
24
25 decompressed = zlib.decompress(compressed)
26 print "Decompressed Size: {0}".format(len(decompressed))
27
28 # output
29
30 # Original Size: 1022
31 # Compressed Size: 423
32 # Decompressed Size: 1022

注册Shutdown函数



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

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

 1 import atexit
 2 import time
 3 import math
 4
 5 def microtime(get_as_float = False) :
 6     if get_as_float:
 7         return time.time()
 8     else:
 9         return ‘%f %d‘ % math.modf(time.time())
10 start_time = microtime(False)
11 atexit.register(start_time)
12
13 def shutdown():
14     global start_time
15     print "Execution took: {0} seconds".format(start_time)
16
17 atexit.register(shutdown)
18
19 # Execution took: 0.297000 1387135607 seconds
20 # Error in atexit._run_exitfuncs:
21 # Traceback (most recent call last):
22 #   File "C:\Python27\lib\atexit.py", line 24, in _run_exitfuncs
23 #     func(*targs, **kargs)
24 # TypeError: ‘str‘ object is not callable
25 # Error in sys.exitfunc:
26 # Traceback (most recent call last):
27 #   File "C:\Python27\lib\atexit.py", line 24, in _run_exitfuncs
28 #     func(*targs, **kargs)
29 # TypeError: ‘str‘ object is not callable

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

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

结论


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

时间: 2024-10-13 22:34:05

转载:你需要知道的、有用的 Python 功能和特点的相关文章

[转载]你需要知道的 16 个 Linux 服务器监控命令

转载自: 你需要知道的 16 个 Linux 服务器监控命令 如果你想知道你的服务器正在做干什么,你就需要了解一些基本的命令,一旦你精通了这些命令,那你就是一个 专业的 Linux 系统管理员. 有些 Linux 发行版会提供 GUI 程序来进行系统的监控,例如 SUSE Linux 就有一个非常棒而且专业的工具 YaST,KDE 的 KDE System Guard 同样很出色.当然,要使用这些工具,你必须在服务器跟前进行操作,而且这些 GUI 的程序占用了很多系统资源,所以说,尽管 GUI

你需要知道的并且对你很有用的 Python 功能和特点

在使用Python多年以后,我偶然发现了一些我们过去不知道的功能和特性.一些可以说是非常有用,但却没有充分利用.考虑到这一点,我编辑了一些你应该了解的Python功能特色. 带任意数量参数的函数 你可能已经知道了Python允许你定义可选参数.但还有一个方法,可以定义函数任意数量的参数. 首先,看下面是一个只定义可选参数的例子 现在,让我们看看怎么定义一个可以接受任意参数的函数.我们利用元组来实现. 使用Glob()查找文件 大多Python函数有着长且具有描述性的名字.但是命名为的函数你可能不

[转载]你可能不知道的 30 个 Python 语言的特点技巧

[转载地址:http://www.oschina.net/translate/thirty-python-language-features-and-tricks-you-may-not-know] 从我开始学习Python时我就决定维护一个经常使用的“窍门”列表.不论何时当我看到一段让我觉得“酷,这样也行!”的代码时(在一个例子中.在StackOverflow.在开源码软件中,等等),我会尝试它直到理解它,然后把它添加到列表中.这篇文章是清理过列表的一部分.如果你是一个有经验的Python程序

【转载】有哪些省时小技巧,是每个Linux用户都应该知道的

前言:有网友在问答网站Quora上提问:“有哪些省时小技巧,是每个Linux用户都应该知道的?” Joshua Levy 平常就在 Linux 平台工作,并且他积累了不少实用命令行技巧,他在回复中精选出一部分.对技术用户来说,这些技巧挺重要或实用,但知道的人并不多.下文略有点长,一般来说,用户也不需要对全部内容都了解,但为了达到省时方便的目的,Joshua Levy 仍不遗余力做了校对,以保证列出的每一条都值得一读,前提是你是一位Linux重度用户. 为了获取文中提到的一个命令的更多信息,先试下

你应该知道的25个非常有用的CSS技巧

在我们的前端CSS编码当中,经常要设置特殊的字体效果,边框圆角等等,还要考虑兼容性的问题, CSS网页布局,说难,其实很简单. 说它容易,往往有很多问题困扰着新手,在中介绍了非常多的技巧,这些小技巧与知识能事半功倍的给大家以帮助,经验丰富的CSS程序员通常都知道这一点,但初学者不要错过了! 这里有25个非常有用的CSS技巧,将帮助你解决让你棘手的CSS代码问题.你可以直接使用到你现在的项目当中 1.更改文本突出显示颜色(Change Text Highlight Color) 您可能不知道!使用

我希望自己尽早知道的 7 个 JavaScript 怪癖(转载oschina)

如果对你来说JavaScript还是一门全新的语言,或者你是在最近的开发中才刚刚对它有所了解,那么你可能会有些许挫败 感.任何编程语言都有它自己的怪癖(quirks)--然而,当你从那些强类型的服务器端语言转向JavaScript的时候 ,你会感到非常困惑.我就是这样!当我在几年前做全职JavaScript开发的时候,我多么希望关于这门语言的许多事情我能尽早地知道.我希望通过本文中分享的一些怪癖能让你免于遭受我所经历过的那些头疼的日子.本文并非一个详尽的列表,只是一些取样,目的是抛砖引玉,并且让

[转载]网站开发人员应该知道的61件事

http://news.cnblogs.com/n/82363/ 网站开发人员应该知道的61件事 原文网址:http://stackoverflow.com/questions/72394 译者:阮一峰 一.界面和用户体验(Interface and User Experience) 1.1 知道各大浏览器执行Web标准的情况,保证你的站点在主要浏览器上都能正常运行.你至少要测试以下引擎:Gecko(用于Firefox).Webkit(用于Safari.Chrome和一些手机浏览器).IE(你可

你需要知道的CSS3 动画技术

译自:你需要知道的CSS3 动画技术 译自:What You Need To Know About Behavioral CSS 请尊重版权,转载须注明本站链接! 译序:本文译自Smashingmagazine,但是原文讲述的内容有些浅,也不是很完整,前端观察在翻译的前提下,增加了更多的更系统的内容.如有不足之处,欢迎指正补充. 随着网络的发展,浏览器具有更强的渲染更高级代码的能力,我们正逐步实现跨越所有平台和浏览器的目标.我们不但可以要花费更少的时间来确保我们的盒模型在IE6中看起来正常,而且

你应该知道的10种软件工具

除非你是设计小型模拟电子电路,不然这年头离开了计算机的帮助,在嵌入式系统设计中很难做成什么事.我觉得我应该分享一个能帮助我完成工作的软件工具列表.它们大多数都是免费的或者比较便宜的.它们大多数也和软件一起工作.如果你向来不需要设计,阅读或者编辑任何软件,那么你属于读了这篇文章不会从中受益的那一小部分人. 免责声明:"最佳"软件工具通常是一种主张.你可能不同意我的主张,那就取其精华吧. 1. 版本控制系统 不管你工作在一个100人的团队,还是独自一人干活,如果你从事设计,你应该会用到版本