Python 增强类库

程序中断

# coding=utf-8 支持中文

re = iter(range(5))

try:
    for i in range(100):
        print re.next()
except StopIteration:
    print 'here is end', i

print "Haha"

文字处理

数据对象,数组,队列

日期和时间

数学运算

存储

系统互动,操作系统,文件系统

多线程,多进程

socket网络

原文地址:https://www.cnblogs.com/jiqing9006/p/10629873.html