您的位置:首页 > 编程语言 > Python开发

用python处理时间、utf8文本、正则匹配、序列化、目录路径搜索、xml解析

2013-05-02 16:06 621 查看
python 处理时间

import time
import re
now = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime())
timeobj = re.match(r'(.*)-(.*)-(.*) (.*):(.*):(.*)', now)
if timeobj is not None:
timestamp = time.mktime(time.strptime(now, "%Y-%m-%d %H:%M:%S"))
date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(timestamp))


CentOS升级python到2.7版本

/article/3470276.html

How to Use UTF-8 with Python
http://www.evanjones.ca/python-utf8.html

python 读取并显示 UTF-8 中文文本

/article/5543713.html

Python中文全攻略

http://www.sqlite.com.cn/MySqlite/11/395.Html

用多个分隔符正则匹配分割字符串

http://bbs.chinaunix.net/thread-1821763-1-1.html

python 正则匹配中文

http://www.blogjava.net/Skynet/archive/2009/05/02/268628.html

序列化Python对象

http://woodpecker.org.cn/diveintopython3/serializing.html

python 处理os路径

import sys
import os
if not os.path.exists('./directory/'):
os.makedirs('./directory/')
f = open('./directory/file', 'a')
f.write('text\n')
f.close()


python os.path模块学习

http://www.redicecn.com/html/Python/20110507/273.html

python 解析xml

https://docs.python.org/2/library/xml.etree.elementtree.html#module-xml.etree.ElementTree
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: