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]*)
属性操作関数
4 つの組み込み関数は、ネームスペース内の属性に対して次の操作を実行します。属性が存在するかどうか、値を取得し、値を設定し、削除します。モジュール、クラス、インスタンスで使用できます。
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 module
高度な文字列操作: re module (正規表現)
一般的なオペレーティング システム インターフェイス: os モジュール
##ファイルとディレクトリのコピー: shutil モジュール
##インターネット関連モジュール:##公共网关接口: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
#######################################################################################? #、###### #デバッグ、時間、最適化: pdb、時間、プロファイル######コピー: コピー モジュール######ランダム: ランダム モジュール######