Python內建工具


內建函數

str(string)                   返回对象的字符串表示

list(seq)

tuple(seq)

int(x)                        把字符串或数字转换为整数

long(x)

float(x)

Complex(real, image)

hex(i)

oct(i)

ord(c)                        返回单个字符的ascii值

chr(i)                        返回ascii值为i的字符

min(i[, i]*)

max(i[, i]*)

屬性運算子

四個內建函數分別對一個名字空間裡的屬性做如下動作:是否存在,取值,設值,刪除。可用於模組,類別和實例。

hasattr                       有属性则返回1,否则0

getattr

setattr

delattr

執行程式

import

exec code [in globaldict[, localdict]]

compile(string, filename, kind)

execfile(filename[, globaldict[, localdict]])

eval(code[, globaldict[, localdict]])

庫模組

基本字串運算:str模組

進階的字串運算:re模組(正規表示式)

通用的作業系統介面:os模組

拷貝檔案與目錄:shutil模組

Internat相關模組:

公共网关接口:cgi模块

操作URL: urllib和urlparse模块

特殊的internet协议:httplib, ftplib, gopherlib, poplib, imaplib, nntplib, smtplib

处理internat文件的模块:sgmllib, htmllib, xmllib, formatter, rfc822, mimetools, binhex, uu, binascii, xdrllib, mimetypes, base64, quopri, mailbox, mimify

處理二進位資料:struct模組

調試,時間與最佳化:pdb, time, profile

拷貝:copy模組

隨機:random模組

#