Time of Update: 2015-04-01
標籤:#coding:utf-8import os;def SortList(item): return item[1];def ReadSize(fileName): return float(os.path.getsize(fileName));def WriteAll(path): l = [] loger =
Time of Update: 2015-04-01
標籤:原文:http://www.cnblogs.com/vamei/p/3174796.htmlVamei 在迴圈對象和函數對象中,我們瞭解了迴圈器(iterator)的功能。迴圈器是對象的容器,包含有多個對象。通過調用迴圈器的next()方法 (__next__()方法,在Python 3.x中),迴圈器將依次返回一個對象。直到所有的對象遍曆窮盡,迴圈器將舉出StopIteration錯誤。 在for i in
Time of Update: 2015-04-01
標籤:#設a為字串import timea = "2011-09-28 10:00:00"#中間過程,一般都需要將字串轉化為時間數組time.strptime(a,‘%Y-%m-%d %H:%M:%S‘)>>time.struct_time(tm_year=2011, tm_mon=9, tm_mday=27, tm_hour=10, tm_min=50, tm_sec=0, tm_wday=1, tm_yday=270, tm_isdst=-1)#將"2011-09-28 10:0
Time of Update: 2015-04-01
標籤:Python 3.3.5Debian 3.12One thing I found weird is using the following code is that the input I entered isn‘t displayed, even after I terminate the script. However I found a way accidently which is to set stdin as DEVNULL.1 try:2 stdout =
Time of Update: 2015-04-01
標籤:python return import #author: orangleliu date: 2014-11-12#python2.7.x ip_scaner.py‘‘‘不同平台,實現對所在內網端的ip掃描有時候需要知道所在區域網路的有效ip,但是又不想找特定的工具來掃描。使用方法 python ip_sc
Time of Update: 2015-04-01
標籤:閉包 python閉包 python Python閉包的學習什麼是閉包?借用維基上解釋:在電腦科學中,閉包(Closure)是詞法閉包(Lexical
Time of Update: 2015-04-01
標籤:python wing-ide 中文亂碼 在安裝好Wing IDE編輯器之後,輸入中文的時候會出現小方格,也就是預設不能顯示中文。這個時候我們需要修改編輯器預設的字型。 解決方案如下: 解決的辦法是找到 pango.aliases 檔案。 如:C:\Program Files\Wing IDE 4.1\bin\gtk-bin\etc\pango目錄下
Time of Update: 2015-04-01
標籤:python 日期 <pre name="code" class="plain">首先匯入time,和datetime包import datetimeimport time實現代碼如下:if __name__ == '__main__': dt=sys.argv[1] myday = datetime.datetime(
Time of Update: 2015-03-31
標籤:原文連結:http://www.ibm.com/developerworks/cn/linux/l-pyunit/軟體的測試是一件非常乏味的事情,在測試別人編寫的軟體時尤其如此,程式員通常都只對編寫代碼感興趣,而不喜歡文檔編寫和軟體測試這類"沒有創新"的工作。既然如此,為什麼不讓程式員在編寫軟體時自己加入一些用於測試的代碼,使測試過程自動化呢?在軟體工程中,這一技術稱為自動單元測試,本文介紹在用Python開發軟體時如何?這一目標。 一、軟體測試大型軟體系統的開發是一個很複雜的過
Time of Update: 2015-04-01
標籤:本文轉載自:http://my.oschina.net/flynewton/blog/10660將memcached.pyc拷貝到工作目錄1 #!/usr/bin/env python2 3 import memcache4 5 mc = memcache.Client([‘127.0.0.1:12000‘],debug=0)6 mc.set("foo","bar")7 value = mc.get("foo")8 print
Time of Update: 2015-03-31
標籤:爬蟲 多線程 python爬蟲 regex python爬蟲Pragmatic系列IV說明:在上一篇部落格中,我們已經做到了從趕集網上單個首頁中抓取所有的連結,並下載下來,分析後存入Excel中。本次目標:在本節中,我們將使用python多線程技術從趕集網上抓取連結並分析,注意,我們這次能夠抓獲的連結數目可以遠遠大於上一篇部落格中抓獲的。分析:用爬蟲統計資
Time of Update: 2015-03-31
標籤:sphinx doc 文檔 python 在使用Python時,一個特性是Python中的文檔字串,文檔字串又稱為DocStrings。使用文檔字串可以為我們的模組、類、函數添加說明性文檔,使程式更容易被看懂。這好像和其他語言中的注釋沒什麼區別,然而,Python中的文檔字串特殊在於Python提供了相應的方法,可以將這些說明性的文檔輸出。假設有如下的函數
Time of Update: 2015-03-31
標籤: 系統內容:OS:RedHat5Python版本:Python2.7.3gcc版本:4.1.2 各個安裝包版本:scipy-0.11.0numpy-1.6.2nose-1.2.1lapack-3.4.2atlas-3.10.0 依賴關係:scipy的安裝需要依賴於numpy、lapack、atlas(後兩者都是線性代數工具包),而numpy和sci的測試程式的運行又依賴於nose,因此,整個安裝過程必須要按順序執行的,否則是無法執行下去的。 安裝步驟
Time of Update: 2015-03-31
標籤:#當前一周 def week_get_now(self): import datetime d = datetime.datetime.now() dayscount = datetime.timedelta(days=d.isoweekday()) dayto = d sixdays = datetime.timedelta(days=6) dayfrom = dayto -
Time of Update: 2015-04-01
標籤:python 爬蟲 抓取圖片 python模組 Regex 利用python抓取網狀圖片的步驟:1.根據給定的網址擷取網頁原始碼2.利用Regex把原始碼中的圖片地址過濾出來3.根據過濾出來的圖片地址下載網狀圖片import urllibimport reimport os
Time of Update: 2015-03-31
標籤:password change python 使用者 import #!/usr/bin/pythonfrom fabric.api import *for i in range(24,34): host = ‘[email protected]‘ + str(i)
Time of Update: 2015-04-01
標籤:python 函數式編程 編碼 測試 效能 http://blog.csdn.net/pipisorry/article/details/44801859How to become a proficient(熟練的) Python programmer如何成為Python高手Spoiler: This post is
Time of Update: 2015-04-01
標籤:greenev是一個基於greenlet協程,事件驅動,非阻塞socket模型的Python網路服務架構,它使得可以編寫同步的代碼,卻得到非同步執行的優點。 本項目受到gevent, openresty, alilua, skynet, clowwindy/ssloop的啟發,在此表示感謝。 reactor模式採用基於epoll, kqueue, poll, select的IO複用機制基於底層的reactor完成上層greenlet協程的調度在CentOS6.5,
Time of Update: 2015-03-31
標籤: 因為將來的實驗室需要做大資料安全相關的工作,提前得到老師指示,需要學習python,其實我早就想學python了,對於做網路安全來說,python是一門很方面的指令碼語言,哈哈,現在何不利用這個機會學個痛快:) 以下所有內容都是整理來自廖雪峰的官網,一套不錯的Python學習教程,適於快速入門,網址廖雪峰的官網
Time of Update: 2015-03-31
標籤:# -*- coding:utf-8 -*-‘‘‘ftplib庫的讀寫操作檔案名稱中含有中文的特殊處理:收到的為utf-8格式的字串,在儲存時需要使用unicode編碼的檔案名稱寫入本地檔案系統。測試環境:Server: File Zilla Server 0.9.50 Client OS: Win7‘‘‘import ftplibfrom ftplib imp