摘要: PASSWORDS = {'email':'asdc3c145daf54gsfdg1re', 'blog': '23dfsdgfdssfdv', 'luggage': 'asdasdf1243weaf4'}import sys,pyperclipif len(sys.argv) < 2: print 阅读全文
posted @ 2018-03-17 20:57 Benguoby2 阅读(183) 评论(1) 推荐(0) 编辑
摘要: import copy 假设在python中对list的复制 copy称为浅复制 deepcopy称为深复制 浅复制和深复制在一般的list中作用是相同的,都是进行一个复制 但是在list嵌套list中就会有区别 比如: a = [1,2,[3,4]] b = copy.copy(a) c= cop 阅读全文
posted @ 2018-03-17 16:38 Benguoby2 阅读(534) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import string def extend_word(text): if text.find('\'') > 0: old2new = dict() words = text.split() for word in words: if word.f 阅读全文
posted @ 2018-03-17 12:40 Benguoby2 阅读(214) 评论(0) 推荐(0) 编辑