摘要:
PASSWORDS = {'email':'asdc3c145daf54gsfdg1re', 'blog': '23dfsdgfdssfdv', 'luggage': 'asdasdf1243weaf4'}import sys,pyperclipif len(sys.argv) < 2: print 阅读全文
摘要:
import copy 假设在python中对list的复制 copy称为浅复制 deepcopy称为深复制 浅复制和深复制在一般的list中作用是相同的,都是进行一个复制 但是在list嵌套list中就会有区别 比如: a = [1,2,[3,4]] b = copy.copy(a) c= cop 阅读全文
摘要:
# -*- 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 阅读全文