python 模块整理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 模块整理相关的知识,希望对你有一定的参考价值。

---文件、系统---

import glob  # 给定路径下查找符合规则文件。三个匹配符:”*”, “?”, “[]”。”*”匹配0个或多个字符;”?”匹配单个字符;”[]”匹配指定范围内的字符,如:[0-9]匹配数字。

print glob.glob("../*/*.jpg")  # 返回数组

import os

import sys

import time

 

 

---字符串---

import string  # 字符串相关,譬如大小写改变,字符判断

from string import Formatter  # 字符串替换。通过position和keyword来指定替换对象

"my name is {0.name}, I am living at {area[0].city}".format(person, area_list)

from string import Template  # 字符串替换。默认通过$来指定替换对象

header = ‘‘‘<title>$title</title>‘‘‘

header.substitute(title=the_title)

参考文档:

http://blog.csdn.net/xiaoxiaoniaoer1/article/details/8542834

http://www.cnblogs.com/rollenholt/archive/2011/11/25/2263722.html

http://www.cnblogs.com/youngershen/p/3972009.html

 

---网络---

BaseHTTPServer 

http://blog.csdn.net/linda1000/article/details/8087546

SimpleHTTPServer  # HTTP 服务

CGIHTTPServer  # CGI 服务

注意!有CGI脚本时,应该用CGIHTTPServer启服务,如果SimpleHTTPServer的话,会直接展示脚本内容

 

---多线程---

import threading

 

 

 

---图片---

以上是关于python 模块整理的主要内容,如果未能解决你的问题,请参考以下文章

Python 常用系统模块整理

VS2015 代码片段整理

Python - 模块

python课堂整理23----模块介绍

模块整理笔记

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段