摘要: #! /usr/bin/python# -*- coding: utf-8 -*-def check_id_num(id_num): assert len(id_num) == 18 and id_num[:17].isdigit() factors = [7, 9, 10, 5... 阅读全文
posted @ 2011-01-15 17:57 阿债 阅读(178) 评论(0) 推荐(0)
摘要: #! /usr/bin/python# -*- coding: utf-8 -*-def get_constellation(ymd="2000-01-01"): stellates = [ {'date':120, 'name':u'水瓶座'}, {'da... 阅读全文
posted @ 2011-01-15 17:55 阿债 阅读(151) 评论(0) 推荐(0)
摘要: 设置python运行环境的编码参考这里 http://diveintopython.org/xml_processing/unicode.html《Dive Into Python》 的 Example 9.15. sitecustomize.py# sitecustomize.py #... 阅读全文
posted @ 2011-01-15 17:54 阿债 阅读(147) 评论(0) 推荐(0)