Python编程中需要注意的一些事
jopen 12年前
<p style="text-align:left;" align="center">围绕一门语言学习它的文化精髓能让你成为一名更优秀的<span class="wp_keywordlink"><a title="程序员的本质" href="/misc/goto?guid=4958202204547787659">程序员</a></span>更进一步,如果你还没读过Python之禅(Zen of Python) ,那么打开Python的命令提示符输入<span style="color:#c0c0c0;">import this</span>,列表中的每一项你都可以在<a class="external" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://artifex.org']);" href="/misc/goto?guid=4958340803086897459" rel="nofollow" target="_blank">这里</a>找个相对应的例子。</p> <p style="text-align:center;" align="center"><a title="import_python" href="/misc/goto?guid=4958340803886006653" rel="lightbox[19835]"><img title="Python编程中需要注意的一些事" border="0" alt="Python编程中需要注意的一些事" src="https://simg.open-open.com/show/f94200afa0869464e5de6003bf4f7c51.jpg" width="572" height="186" /></a></p> <p style="text-align:center;">(Credit: <a class="external" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://itswater.com']);" href="/misc/goto?guid=4958340804683983344" rel="nofollow" target="_blank">itswater </a>)</p> <p>吸引我注意力的一条是:</p> <p><strong>优雅胜于丑陋 (Beautiful is better than ugly)</strong></p> <p>看下面例子:</p> <p>一个带有数字参数的list函数其功能是返回参数中的奇数可以分开写:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true"> #----------------------------------------------------------------------- halve_evens_only = lambda nums: map(lambda i: i/2,\ filter(lambda i: not i%2, nums)) #----------------------------------------------------------------------- def halve_evens_only(nums): return [i/2 for i in nums if not i % 2]</pre> </div> <p><strong>记住Python</strong><strong>中那些非常简单的事</strong></p> <p>两个变量的交换:</p> <pre class="brush: python; gutter: true"> a, b = b, a</pre> <p>参数在切片操作中的步骤,如:</p> <pre class="brush: python; gutter: true"> a = [1,2,3,4,5] >>> a[::2] # 以步长为2的增量迭代整个list对象 [1,3,5]</pre> <div> <pre> 一个特殊的例子 `x[::-1]`用来反转x的实用语法。</pre> <pre></pre> <p> </p> <pre class="brush: python; gutter: true"> >>> a[::-1] [5,4,3,2,1]</pre> </div> <p><strong>不要用可变对象作为默认参数值(Don’t use mutable as defaults)</strong></p> <pre class="brush: python; gutter: true">def function(x, l=[]): # 不要这么干 def function(x, l=None): # 更好的一种方式 if l is None: l = []</pre> <p><strong>使用iteritems</strong><strong>而不是items</strong></p> <p>iteriterms 使用的是 generators,所以当迭代很大的序列是此方法更好</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">d = {1: "1", 2: "2", 3: "3"} for key, val in d.items() # 调用items()后会构建一个完整的list对象 for key, val in d.iteritems() # 只有在迭代时每请求一次才生成一个值</pre> </div> <p>此情景和range与xrange的关系相似。</p> <p><strong>使用isinstance </strong><strong>而不是type</strong></p> <p>不要这样做:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">if type(s) == type(""): ... if type(seq) == list or \ type(seq) == tuple: ...</pre> </div> <p>应该是这样:</p> <div> <pre></pre> <pre class="brush: python; gutter: true">if isinstance(s, basestring): ... if isinstance(seq, (list, tuple)): ...</pre> </div> <p>至于为什么这样做,看这里:<a class="external" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://stackoverflow.com']);" href="/misc/goto?guid=4958340805488712730" rel="nofollow" target="_blank">http://stackoverflow.com/a/1549854/504262</a></p> <p>需要注意的是这里使用basestring而不是str是因为你可能会用一个unicode对象去检查是否为string,例如:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true"> >>> a=u'aaaa' >>> print isinstance(a, basestring) True >>> print isinstance(a, str) False</pre> </div> <p>因为在Python中3.0以下的版本存在两种字符串类型str和unicode</p> <div> <pre> object</pre> <pre> |</pre> <pre> basestring</pre> <pre> / \</pre> <pre> str unicode</pre> </div> <p><strong>学习各种集合(learn the various collections)</strong></p> <p>python有各种各样的容器数据类型,在特定情况下选择python内建的容器如:list和dict。通常更多像如下方式使用:</p> <p> </p> <pre class="brush: python; gutter: true"> freqs = {} for c in "abracadabra": try: freqs[c] += 1 except: freqs[c] = 1</pre> <p>一种更好的方案如下:</p> <pre class="brush: python; gutter: true">freqs = {} for c in "abracadabra": freqs[c] = freqs.get(c, 0) + 1</pre> <p>一种更好的选择 collection类型defautdict:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">from collections import defaultdict freqs = defaultdict(int) for c in "abracadabra": freqs[c] += 1</pre> </div> <p>其它集合</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true"> namedtuple() # 用指定的域创建元组子类的工厂函数 deque # 类似list的容器,快速追加以及删除在序列的两端 Counter # 统计哈希表的dict子类 OrderedDict # 记录实体添加顺序的dict子类 defaultdict # 调用工厂方法为key提供缺省值的dict子类</pre> </div> <p><strong>当创建类时Python</strong><strong>的魔术方法:</strong></p> <div> <pre></pre> <pre class="brush: python; gutter: true"> __eq__(self, other) # 定义相等操作的行为, ==. __ne__(self, other) # 定义不相等操作的行为, !=. __lt__(self, other) #定义小于操作的行为, <. __gt__(self, other) #定义不大于操作的行为, >. __le__(self, other) #定义小于等于操作的行为, <=. __ge__(self, other) #定义大于等于操作的行为, >=.</pre> </div> <p><strong>条件赋值</strong></p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">x = 3 if (y == 1) else 2</pre> </div> <p>表达式请起来恰恰像:如果y等于1就把3赋值给x,否则把2赋值给x,当然同样可以使用链式条件赋值如果你还有更复杂的条件的话。</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">x = 3 if (y == 1) else 2 if (y == -1) else 1</pre> </div> <p>然而到了某个特定的点,它就有点儿过分了。</p> <p>记住,你可以在任何表达式中使用if-else例如:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">(func1 if y == 1 else func2)(arg1, arg2)</pre> </div> <p>func1将被调用如果y等于1的话,反之func2被调用。两种情况下,arg1和arg2两个参数都将附带在相应的函数中。</p> <p>类似地,下面这个表达式同样是正确的</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true">x = (class1 if y == 1 else class2)(arg1, arg2)</pre> </div> <p>class1和class2是两个类</p> <p><strong>在有必要的时侯使用Ellipsis</strong></p> <p>创建类时,你可以使用__getitem__,让你的类像字典一个工作,拿下面这个类举例来说:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true"> class MyClass(object): def __init__(self, a, b, c, d): self.a, self.b, self.c, self.d = a, b, c, d def __getitem__(self, item): return getattr(self, item) x = MyClass(10, 12, 22, 14)</pre> </div> <p>因为有了__getitem__,你就能够通过对象x的x[‘a’]获取a的值,这应该是公认的事实。</p> <p>这个对象通常用于继承Python的切片(slicing) (<a class="external" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://docs.python.org']);" href="/misc/goto?guid=4958340806279414959" rel="nofollow" target="_blank">http://docs.python.org/library/stdtypes.html#bltin-ellipsis-object</a>),如果添加如下语句:</p> <div> <pre></pre> <p> </p> <pre class="brush: python; gutter: true"> def __getitem__(self, item): if item is Ellipsis: return [self.a, self.b, self.c, self.d] else: return getattr(self, item)</pre> </div> <p>我们就可以使用x[…]获取的包含所有项的序列</p> <pre class="brush: python; gutter: true"> >>> x = MyClass(11, 34, 23, 12) >>> x[...] [11, 34, 23, 12]</pre> <p> </p> <p>原文:<a class="external" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://satyajit.ranjeev.in']);" href="/misc/goto?guid=4958340807086841193" rel="nofollow" target="_blank">Satyajit Ranjeev</a> 编译:<a href="/misc/goto?guid=4958185140659301754" target="_blank">伯乐</a>在线 – <a href="/misc/goto?guid=4958340808616864734" target="_blank">刘志军</a></p> <p> </p>