#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#什么是函数#就是引用,创建,使用#例子deffoo(...
分类:
编程语言 时间:
2014-06-27 17:13:27
阅读次数:
356
#!/usr/bin/env python# coding=gbkimport sysimport osimport timeif __name__== '__main__': filename = sys.argv[1] nowtime = int(time.time()) st...
分类:
其他好文 时间:
2014-06-27 13:28:10
阅读次数:
148
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#执行环境#可调用对象"""许多的python对象都是...
分类:
编程语言 时间:
2014-06-27 13:01:47
阅读次数:
219
escape.py# -*- coding: utf8 -*-import sysif type('') is not type(b''): def u(s): return s bytes_type = bytes unicode_type = str bas...
分类:
编程语言 时间:
2014-06-27 11:10:20
阅读次数:
480
# -*- coding: utf-8 -*-class test(object): passclass test1(test): passclass test2(test1): passprint test2.__bases__print type(test2.__bases__...
分类:
编程语言 时间:
2014-06-26 23:12:27
阅读次数:
268
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #file与inpu...
分类:
编程语言 时间:
2014-06-26 22:48:00
阅读次数:
458
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #异常 """ Na...
分类:
编程语言 时间:
2014-06-26 22:32:05
阅读次数:
353
SocketServer包对socket包进行了包装(封装),使得创建socket服务非常简单。TCPServer+BaseRequestHandler使用TCPServer和BaseRequestHandler编写socket服务的样例。#-*- coding:utf-8 -*-from Sock...
分类:
编程语言 时间:
2014-06-26 19:28:07
阅读次数:
307
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #operator模...
分类:
其他好文 时间:
2014-06-26 16:09:10
阅读次数:
218
KVC/KVO1 KVC/KVO2 线程(GCP)
分类:
其他好文 时间:
2014-06-25 12:40:23
阅读次数:
109