摘要: 在查询mongo时用到了正则查询设字符串为 str = '/ab/cd.ef?g='直接用正则查询没有匹配。collection.find({"re":{'$regex':str},'b':{'$nin':[False]}}).count()原因是 / . ? 都是正则表达式中的特殊字符,如果要保留... 阅读全文
posted @ 2015-12-25 18:19 匡子语 阅读(1383) 评论(0) 推荐(0) 编辑
摘要: 部分来源:http://blog.sina.com.cn/s/blog_5c6760940100bmg5.html①直接赋值 ---- 结果是不同名的引用对新字典的修改完全作用在了原来的字典上,只是引用的关系>>> c = {'a':1,'b':2}>>> d = c>>> d['e']=3>>> ... 阅读全文
posted @ 2015-12-25 10:54 匡子语 阅读(887) 评论(0) 推荐(0) 编辑