python
文章平均质量分 76
actonZX
Hello World
展开
-
初学python 用shelve 实现的一个contacts
#ShelveDb.py # Supported by Acton #**** ----------------- ***** # All rights reserved by Acton # Tue Jul 30 21:01:53 2013 import sys,shelve def store_person(db): # store the information o原创 2013-07-30 21:08:06 · 1144 阅读 · 0 评论 -
Python 字符串前面加 r
在Python的string前面加上‘r’, 是为了告诉编译器这个string是个raw string,不要转意backslash '\' 。 例如,\n 在raw string中,是两个字符,\和n, 而不会转意为换行符。由于正则表达式和 \ 会有冲突,因此,当一个字符串使用了正则表达式后,最好在前面加上'r'。转载 2013-08-21 23:40:14 · 824 阅读 · 0 评论