/* * Created by SharpDevelop. * User: Administrator * Date: 2013/11/18 * Time: 20:55 * * To change this template use Tools | Options | Coding | Edit ....
分类:
其他好文 时间:
2014-06-28 12:34:14
阅读次数:
466
python版本(适用于树莓派) 1 #!/usr/bin/env python 2 #-*-coding:utf-8-*- 3 import httplib,urllib 4 import json 5 import re,urllib2 6 import time 7 8 class Get.....
前提:在软件开发中也常常遇到类似的情况,实现某一个功能有多种算法或者策略,我们可以根据环境或者条件的不同选择不同的算法或者策略来完成该功能。如查 找、排序等,一种常用的方法是硬编码(Hard Coding)在一个类中,如需要提供多种查找算法,可以将这些算法写到一个类中,在该类中提供多个方法,每一个方...
分类:
Web程序 时间:
2014-06-23 07:47:39
阅读次数:
260
1 #coding:utf-82 3 import os4 5 6 for root,dirs,files in os.walk("D:"):7 for fileItem in files:8 print root + os.sep + fileItem结果如下
分类:
其他好文 时间:
2014-06-23 00:30:04
阅读次数:
244
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #dict{键:值}...
分类:
编程语言 时间:
2014-06-22 23:34:14
阅读次数:
292
最近想用python写个切换host的小工具,折腾了好几天,终于实现了第一步。采用Tkinter编程,text控件接受输入,然后点击save按钮,保存内容到当前文件夹下,文件名为hostb,如下两张图片:直接上代码:#支持中文#!coding:gbk#导入需要的包from Tkinter impor...
分类:
编程语言 时间:
2014-06-22 23:24:49
阅读次数:
421
翻出google测试工程师的一道题目:
设计一个函数,任何语言都可以,实现以下功能:
一个句子,将句子中的单词全部倒排过来,但单词的字母顺序不变。eg. this is a real world输出结果为:world real a is this
笔者用Python实现如下:
#! /usr/bin/env python
# -* -coding:utf-8-*-
def...
分类:
编程语言 时间:
2014-06-22 16:54:45
阅读次数:
247
python自带调试工具库:pdb
# -*- coding:utf-8 -*-
def func(num):
s = num * 10
return s
if __name__ == '__main__':
print 'debug starting...'
print '*' * 10
print ‘debug ending…’
num...
分类:
数据库 时间:
2014-06-21 20:55:59
阅读次数:
357
# -*- coding: utf-8 -*-"""Created on Wed Jun 18 11:46:15 2014@author: hp"""import numpy as npimport operatordef createDataSet(): group=np.random.ra...
分类:
其他好文 时间:
2014-06-21 13:30:34
阅读次数:
331
1. copy.copy 浅拷贝 只拷贝父对象,不会拷贝对象的内部的子对象。2. copy.deepcopy 深拷贝 拷贝对象及其子对象一个很好的例子:# -*- coding: gbk -*-#! /auto/ERP/python_core/chapter'''Created on 2014年6月...
分类:
编程语言 时间:
2014-06-20 14:16:13
阅读次数:
297