python
文章平均质量分 55
wait_miracle
这个作者很懒,什么都没留下…
展开
-
python对XML 操作
一.XML的读取.在 NewEdit 中有代码片段的功能,代码片段分为片段的分类和片段的内容。在缺省情况下都是用XML格式保存的。下面我讲述一下,如何使用minidom来读取和保存XML文件。下面是片段分类的一个示例文件--catalog.xml<?xml version="1.0" encoding="utf-8"?><catalog> <m...原创 2014-01-09 10:11:38 · 136 阅读 · 0 评论 -
一位大牛整理的Python资料 【转】
Python基本安装:* http://www.python.org/ 官方标准Python开发包和支持环境,同时也是Python的官方网站;* http://www.activestate.com/ 集成多个有用插件的强大非官方版本,特别是针对Windows环境有不少改进;Python文档:* http://www.python.org/doc/current/lib/lib.html Pyt...原创 2014-02-08 17:15:58 · 142 阅读 · 0 评论 -
Python 方法调用机制 【转】
内容目录介绍构建和初始化使操作符在自定义类内工作描述你的类属性访问控制制作自定义序列反射可调用对象上下文管理构建描述符对象Pickling你的对象总结附录:如何调用神奇方法 1.介绍这份指南是几个月内最有价值的Blog投稿精华。它的主题是向大家讲述Python中的神奇方法。何为神奇方法呢?它们是面向Python中的...原创 2014-02-08 17:06:26 · 2149 阅读 · 0 评论 -
python操作Excel读写--使用xlrd
一、安装xlrd模块 到python官网下载http://pypi.python.org/pypi/xlrd模块安装,前提是已经安装了python 环境。本人安装的版本:0.9.2,适用2.7以上的python,在cmd窗口,切换路径至setup.py文件下,在cmd窗口输入“python setup.py install”命令。二、使用介绍 1.导入模块 ...原创 2014-02-07 11:28:43 · 90 阅读 · 0 评论 -
Android自动化测试之monkeyrunner基本要素
python脚本详解:1. 导入模块: from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice, MonkeyImage 2. 连接当前设备,并返回一个MonkeyDevice对象; device = MonkeyRunner.waitForConnection() if not device: ...原创 2014-02-07 11:00:39 · 98 阅读 · 0 评论 -
python--range()函数
>>> range(1,5) #代表从1到5(不包含5) [1, 2, 3, 4] >>> range(1,5,2) #代表从1到5,间隔2(不包含5) [1, 3] >>> range(5) #代表从0到5(不包含5) [0, 1, 2, 3, 4]再看看list的操作:...原创 2014-01-14 15:18:38 · 131 阅读 · 0 评论 -
python--文件操作/异常捕获/继承
一、文件操作spath="D:/test/baa.txt" #设置spath值为路径f=open(spath,"w") #以写的权限打开文件夹,此时baa.txt不存在。f.write("First line 1.\n")#写入First line 1 回车f.writelines("First line 2.")+#向此前已打开的文本文件尾追加一行数据.f.close()#关闭文件操...原创 2014-01-14 15:18:19 · 133 阅读 · 0 评论 -
python--python文件互相引用
每一个.py文件称为一个module,module之间可以互相导入.请参看以下例子:# a.pydef add_func(a,b): return a+b# b.pyfrom a import add_func # Also can be : import aprint "Import add_func from module a"print "Result of 1 plus...原创 2014-01-14 15:18:09 · 940 阅读 · 0 评论 -
python--如何获取包中.py文件
module可以定义在包里面.Python定义包的方式稍微有点古怪,假设我们有一个parent文件夹,该文件夹有一个child子文件夹.child中有一个module a.py . 如何让Python知道这个文件层次结构?很简单,每个目录都放一个名为_init_.py 的文件.该文件内容可以为空.这个层次结构如下所示: parent --__init_.py --child -- ...原创 2014-01-14 15:17:58 · 415 阅读 · 0 评论 -
python---Define and invoke function.
def sum(a,b): return a+bfunc = sumr = func(5,6)print r# Defines function with default argumentdef add(a,b=2): return a+br=add(1)print rr=add(1,5)print r 运行结果:1136...原创 2014-01-13 11:15:40 · 141 阅读 · 0 评论 -
python--分支语句&循环语句
x=int(raw_input("Please enter an integer:"))if x<0: x=0 print "Negative changed to zero"elif x==0: print "Zero"else: print "More" 运行结果:Please enter an integer:0Zero a ...原创 2014-01-13 11:11:34 · 203 阅读 · 0 评论 -
python--ASCII和UNICODE字符串的区别
import osprint "Input your Chinese name:"s=raw_input("Press enter to be continued ");print "Your name is : " +s;l=len(s)print "Length of your Chinese name in asc codes is:"+str(l);a=unicode(s,"GBK"...原创 2014-01-13 11:03:15 · 297 阅读 · 0 评论 -
python-字符串
word="abcdefg"a=word[2]print "a is: "+ab=word[1:3]print "b is: "+b # index 1 and 2 elements of word.c=word[:2]print "c is: "+c # index 0 and 1 elements of word.d=word[0:]print "d is: "+d # All eleme...原创 2014-01-13 10:55:56 · 106 阅读 · 0 评论 -
python实现ping命令
假设我们有这么一项任务:简单测试局域网中的电脑是否连通.这些电脑的ip范围从192.168.0.101到192.168.0.200. import subprocesscmd="cmd.exe"begin=101end=200while begin<end: p=subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE...原创 2014-01-13 10:39:19 · 1882 阅读 · 0 评论 -
利用Python获取系统当前时间 .
取得时间相关的信息的话,要用到python time模块,python time模块里面有很多非常好用的功能,你可以去官方文档了解下,要取的当前时间的话,要取得当前时间的时间戳,时间戳好像是1970年到现在时间相隔的时间。你可以试下下面的方式来取得当前时间的时间戳:import timeprint time.time()输出的结果是:1279578704.6725271但是这样是一连串的数字不是我...原创 2014-01-10 16:40:55 · 232 阅读 · 0 评论 -
Eclipse插件pydev安装说明
Eclipse也可以进行python开发,这个开源的IDE也终于有人为之加上python开发的插件了,安装方式和安装其他Eclipse插件一样,前提是你必须在windows上已经安装了python。如下:安装插件 打开Eclipse,找到Help菜单栏,进入Install New Software…选项。 点击work with:输入框的旁边点击...原创 2014-04-17 13:57:29 · 119 阅读 · 0 评论