码迷,mamicode.com
首页 >  
搜索关键字:coding    ( 12955个结果
python基础学习09(核心编程第二版)部分
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#什么是函数#就是引用,创建,使用#例子deffoo(...
分类:编程语言   时间:2014-06-27 17:13:27    阅读次数:356
getrrdinfo.py
#!/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
python基础学习11(核心编程第二版)部分
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#执行环境#可调用对象"""许多的python对象都是...
分类:编程语言   时间:2014-06-27 13:01:47    阅读次数:219
Python url_escape
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
python - 回溯继承树 - 自己实现
# -*- 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
python基础学习07(核心编程第二版)部分
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #file与inpu...
分类:编程语言   时间:2014-06-26 22:48:00    阅读次数:458
python基础学习08(核心编程第二版)部分
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #异常 """ Na...
分类:编程语言   时间:2014-06-26 22:32:05    阅读次数:353
Python使用TCPServer编写(多线程)Socket服务
SocketServer包对socket包进行了包装(封装),使得创建socket服务非常简单。TCPServer+BaseRequestHandler使用TCPServer和BaseRequestHandler编写socket服务的样例。#-*- coding:utf-8 -*-from Sock...
分类:编程语言   时间:2014-06-26 19:28:07    阅读次数:307
operator模块
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #operator模...
分类:其他好文   时间:2014-06-26 16:09:10    阅读次数:218
Key-Value Coding (KVC)
KVC/KVO1 KVC/KVO2 线程(GCP)
分类:其他好文   时间:2014-06-25 12:40:23    阅读次数:109
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!