#! /usr/bin/env python# -*- coding:utf-8 -*-import sysclass sort(object) : @classmethod def __bubble_sort(cls, data = [], start = 0, end = -1) : if end < 0 : end += len(data) if end > len(data) : end =
.Install Qt May use Qt SDK which include MinGW, or install MinGW first(mingw-get-inst-20101030.exe) then Qt. Add qmake.ext to PATH (E:/Qt/2010.05/qt/bin) Add MinGW/bin and MSYS/bin to PATH .Install Python 3 ActiveState Python .Install PyQt http://
>>> add = lambda a, b: a + b>>> add(3,4)7>>> add2 = lambda a, b: add(a, b) + 3>>> add2(3, 4)10>>> add3 = lambda a, b=3: a + b>>> add3(5)8>>> add3(b=5, a=6)11>>> (lambda a, *b:
今天在搜用python求階乘的時候, 搜出來的最簡單的是用reduce這個built-in function, 但是我在用reduce的時候, 卻報NameError: name 'reduce' is not defined. 於是又搜了一下,發現在python 3.0.0.0以後, reduce已經不在built-in function裡了, 要用它就得from functools import reduce. 詳見The fate of reduce() in Python
用兩個底線開頭的函數是私人函數. 雖然說是私人的, 但是還是可以在類外引用>>> class test:def __private():print("private");>>> a = test()>>> a.__private()Traceback (most recent call last): File "<pyshell#5>", line 1, in <module>
The str() function is meant to return representations of values which are fairlyhuman-readable, while repr() is meant to generate representations which can be read bythe interpreter (or will force a SyntaxError if there is not equivalent syntax).
r 䣧以唯讀模式開啟檔案w 以唯寫模式開啟檔案,且先把檔案內容清空(truncate the file first)a 以添加模式開啟檔案,寫檔案的時候總是寫到檔案末尾,用seek也無用。開啟的檔案也是不能讀的r+ 以讀寫方式開啟檔案,檔案可讀可寫,可寫到檔案的任何位置w+ 和r+不同的是,它會truncate the file firsta+ 和r+不同的是,它只能寫到檔案末尾
最近一直在閱讀《Natural Language Processing with Python》,在閱讀該書的6.2節的Sentence Segmentation時,發現錯誤比較多。現在記錄下來,也許可以幫到其他人,也許以後可以整理一下給該書作者發個郵件。在說明問題之前,在這裡先列出我的軟體版本:Python:2.5Nltk:2.0b2本節內容簡介Sentence Segmentation(我不知道如何翻譯,下文中稱作“句子劃分”)把一段文字分成一組句子,由於句子的結尾一般有比較特殊的標點,所以
http://blog.csdn.net/jj_liuxin/archive/2008/12/21/3574638.aspx閑來無事,隨便看看Python 3.0的文檔,發現了一個很pythonic的模組:聲音播放 for windows;湊個流行語叫做“很傻很天真”,不過挺好使得。1>winsound.Beep2>winsound.PlaySound()每一個都有不同的用法,一個一個來看吧。1>winsound.Beep(frequency, duration)