http://blog.csdn.net/kenkywu/article/details/6822220首先通过一个例子来看一下本文中可能用到的对象和相关概念。01 #coding: UTF-802 import sys # 模块,sys指向这个模块对象03 import inspect04 ...
分类:
编程语言 时间:
2015-01-20 00:52:43
阅读次数:
281
#-*-coding:utf-8-*-__author__='Administrator'#python高级编程:有用的设计模式#代理"""代理对一个代价昂贵或者远程的资源提供了一个非直接访问的机制在客户和主意之间,如图.它用来优化对高代价主题的访问,比如,在前一章中描述的memoize装饰器可以被...
分类:
编程语言 时间:
2015-01-19 22:36:45
阅读次数:
213
#-*-coding:utf-8-*-__author__='Administrator'#python高级编程:有用的设计模式#访问者:有助于将算法从数据结构中分离出来"""它与观察者都有相似的目标,都能在不修改代码的情况下扩展指定的类功能,但是访问者更进一步,它将定义一个负责保存数据类,并将算法...
分类:
编程语言 时间:
2015-01-19 22:29:01
阅读次数:
302
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/longest-common-prefix/14: Longest Common PrefixWrite a fu...
分类:
编程语言 时间:
2015-01-19 20:39:03
阅读次数:
205
这是一个给力的开源项目,一个给力的人整理的~~~让我们欢呼雀跃吧。。。
1.git教程:
http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
学习的时候看不懂的东东可以对照着中国的代码托管平台看,差不多 推荐oschina和coding
2.开源框架整理:
https:...
分类:
移动开发 时间:
2015-01-19 14:33:48
阅读次数:
195
#!/usr/bin/python
# -*- coding: utf-8 -*-
from libnmap.process import NmapProcess
from libnmap.parser import NmapParser
import requests
x=90
while x < 255:
print "\033[1;31mstart 118.192.%s.0/24\033...
分类:
编程语言 时间:
2015-01-19 10:56:44
阅读次数:
535
1 #!/usr/bin/python 2 # -*- coding: utf-8 -*- 3 def smtp(file): 4 from email.mime.text import MIMEText 5 from email.mime.multipart import MIM...
分类:
编程语言 时间:
2015-01-19 10:43:32
阅读次数:
205
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import re
import urllib2
from BeautifulSoup import BeautifulSoup
def search(key):
#请求搜索链接,关键字用参数key代替
search_url='http://www.baidu.com/s?ie=UT...
分类:
编程语言 时间:
2015-01-19 09:22:12
阅读次数:
166
python把文件中的邮箱分类保存到相应的文件里面(测试数据100W数据时间10秒)#coding:utf-8
importtime
importlinecache
defreadfile(file):
#读取数据
list_dict={}
file_data=[x.replace(‘\n‘,‘‘)forxinlinecache.getlines(file)if‘@‘inx]
#把后缀名组成字典中的keys,按照..
分类:
编程语言 时间:
2015-01-19 06:57:53
阅读次数:
202
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/roman-to-integer/Roman to IntegerGiven a roman numeral, c...
分类:
编程语言 时间:
2015-01-19 06:46:47
阅读次数:
172