Lovely Python整理
Python - 弱資料類型,不需要強制聲明
Python - 一切都是對象
Pyhton - 語句塊以:結尾,並且下句縮排
Python - 複用層級 程式碼→函式→類→模組
Python - 支援函數
Python - KISS原則 == Keep It Simple,Stupid
一、中文支援
# -*- coding: utf-8 -*-
二、使用模組
import os, sys,cmd
fromt cdctools.py import *
from threading import Thread #多線程
三、模組
os.listdir('path');
os.walk('path')
檔案操作
open('fileName','a/w').write('content');
四、函數
def method(param1,param2):
doSomething
五、命令列互動
import sys
sys.arg[x]
六、類
class ClassName(cmd.Cmd):
def __init__(self):
cmd.Cmd.__init__(self)
if __name__ == ' __main__ ':
doSomething
線程
class grepIt(Thread):
def __init__(self,param1,param2):
Thread.__init__(self)
七、文法
filelist = os.listdir('path')
for cdc in filelist:
if ".cdc" in cdc:
if keword in line:
print line
異常捕獲
try:
for type in tryuni:
try:
ustring = unicode("%s}"%type+stream, type)
#try decode by list
except:
continue
#break!continue try decode guess
except:
return u"bad unicode encode!"
八、其他工具
chardet 編碼探測
epydoc py文檔產生器
ConfigParser 檔案操作API
Web架構
Karrigell WebFrameworks
web.py
九、其他
案頭開發 Tk/Tcl Qt WxPython win32com