一小时快速入门Python教程
假设我们有这么一项任务:简单测试局域网中的电脑是否连通.这些电脑的ip范围从192.168.0.101到192.168.0.200.思路:用shell编程.(Linux通常是bash而Windows是批处理脚本).例如,在Windows上用ping ip 的命令依次测试各个机器并得到控制台输出.由于ping通的时候控制台文本通常是Reply from … 而不通的时候文本是time out … ,所以,在结果中进行字符串查找,即可知道该机器是否连通.实现:Java代码如下:123456789101112String cmdcmd.exe ping ;String ipprefix192.168.10.;intbegin101;intend200;Process pnull;for(intibegin;iend;i){p Runtime.getRuntime().exec(cmdi);String line null;BufferedReader reader newBufferedReader(newInputStreamReader(p.getInputStream()));while((line reader.readLine()) !null){//Handling line , may logs it. }reader.close();p.destroy();}这段代码运行得很好,问题是为了运行这段代码,你还需要做一些额外的工作.这些额外的工作包括:编写一个类文件编写一个main方法将之编译成字节代码由于字节代码不能直接运行,你需要再写个小小的bat或者bash脚本来运行.当然,用C/C同样能完成这项工作.但C/C不是跨平台语言.在这个足够简单的例子中也许看不出C/C和Java实现的区别,但在一些更为复杂的场景,比如要将连通与否的信息记录到网络数据库.由于Linux和Windows的网络接口实现方式不同,你不得不写两个函数的版本.用Java就没有这样的顾虑.同样的工作用Python实现如下:12345678910111213importsubprocesscmdcmd.exebegin101end200whilebeginend:psubprocess.Popen(cmd,shellTrue,stdoutsubprocess.PIPE,stdinsubprocess.PIPE,stderrsubprocess.PIPE)p.stdin.write(ping 192.168.1.str(begin)\n)p.stdin.close()p.wait()printexecution result: %s%p.stdout.read()对比Java,Python的实现更为简洁,你编写的时间更快.你不需要写main函数,并且这个程序保存之后可以直接运行.另外,和Java一样,Python也是跨平台的.有经验的C/Java程序员可能会争论说用C/Java写会比Python写得快.这个观点见仁见智.我的想法是当你同时掌握Java和Python之后,你会发现用Python写这类程序的速度会比Java快上许多.例如操作本地文件时你仅需要一行代码而不需要Java的许多流包装类.各种语言有其天然的适合的应用范围.用Python处理一些简短程序类似与操作系统的交互编程工作最省时省力.Python应用场合足够简单的任务,例如一些shell编程.如果你喜欢用Python设计大型商业网站或者设计复杂的游戏,悉听尊便.Hello world安装完Python之后(我本机的版本是2.5.4),打开IDLE(Python GUI) , 该程序是Python语言解释器,你写的语句能够立即运行.我们写下一句著名的程序语句:1printHello,world!并按回车.你就能看到这句被KR引入到程序世界的名言.在解释器中选择File–“New Window” 或快捷键 CtrlN , 打开一个新的编辑器.写下如下语句:12printHello,world!raw_input(Press enter key to close this window! );保存为a.py文件.按F5,你就可以看到程序的运行结果了.这是Python的第二种运行方式.找到你保存的a.py文件,双击.也可以看到程序结果.Python的程序能够直接运行,对比Java,这是一个优势.国际化支持我们换一种方式来问候世界.新建一个编辑器并写如下代码:12print欢迎来到奥运中国!raw_input(Press enter key to close this window!);在你保存代码的时候,Python会提示你是否改变文件的字符集,结果如下:123# -*- coding: cp936 -*-print欢迎来到奥运中国!raw_input(Press enter key to close this window! );将该字符集改为我们更熟悉的形式:1234# -*- coding: GBK -*-print欢迎来到奥运中国!# 使用中文的例子raw_input(Press enter key to close this window);程序一样运行良好.便易用的计算器用微软附带的计算器来计数实在太麻烦了.打开Python解释器,直接进行计算:1234a100.0b201.1c2343print(abc)/c字符串,ASCII和UNICODE可以如下打印出预定义输出格式的字符串:123print Usage: thingy [OPTIONS]-h Display this usage message-H hostname Hostname to connect to 字符串是怎么访问的?请看这个例子:1234567891011121314151617181920wordabcdefgaword[2]printa is: abword[1:3]printb is: b# index 1 and 2 elements of word.cword[:2]printc is: c# index 0 and 1 elements of word.dword[0:]printd is: d# All elements of word.eword[:2]word[2:]printe is: e# All elements of word.fword[-1]printf is: f# The last elements of word.gword[-4:-2]printg is: g# index 3 and 4 elements of word.hword[-2:]printh is: h# The last two elements.iword[:-2]printi is: i# Everything except the last two charactersllen(word)printLength of word is: str(l)请注意ASCII和UNICODE字符串的区别:1234567printInput your Chinese name:sraw_input(Press enter to be continued );printYour name is : s;llen(s)printLength of your Chinese name in asc codes is:str(l);aunicode(s,GBK)llen(a)printIm sorry we should use unicode char!Characters number of your Chinese \ name in unicode is:str(l);使用List类似Java里的List,这是一种方便易用的数据类型:1234567891011121314151617181920212223word[a,b,c,d,e,f,g]aword[2]printa is: abword[1:3]printb is: printb# index1 and 2 elements of word.cword[:2]printc is: printc# index0 and 1 elements of word.dword[0:]printd is: printd# All elements of word.eword[:2]word[2:]printe is: printe# All elements of word.fword[-1]printf is: printf# The last elements of word.gword[-4:-2]printg is: printg# index3 and 4 elements of word.hword[-2:]printh is: printh# The last two elements.iword[:-2]printi is: printi# Everything except the last two charactersllen(word)printLength of word is: str(l)printAdds new element[图片上传中...(image-b4ced-1616074265420-0)] word.append(h)printword条件和循环语句1234567# Multi-way decisionxint(raw_input(Please enter an integer:))ifx0:x0printNegative changed to zeroelifx0:printZeroelse:printMore# Loops Lista[cat,window,defenestrate]forx ina:printx,len(x)如何定义函数123456789101112131415# Define and invoke function.defsum(a,b):returnabfuncsumrfunc(5,6)printr# Defines function with default argumentdefadd(a,b2):returnabradd(1)printrradd(1,5)printr并且,介绍一个方便好用的函数:123456789# The range() functionarange(5,10)printaarange(-2,-7)printaarange(-7,-2)printaarange(-2,-11,-3)# The 3rd parameter stands for stepprinta文件I/O123456789spathD:/download/baa.txtfopen(spath,w)# Opens file for writing.Creates this file doesnt exist. f.write(First line 1.\n)f.writelines(First line 2.)f.close()fopen(spath,r)# Opens file forreading for line in f:printlinef.close()异常处理12345678sraw_input(Input your age:)ifs:raiseException(Input must no be empty.)try:iint(s)exceptValueError:printCould not convert data to an integer.except:printUnknown exception!else:# It is useful for code that must be executed if the try clause does not raise an exceptionprintYou are %d%i, years oldfinally:# Clean up actionprintGoodbye!类和继承1234567891011121314151617classBase:def__init__(self):self.data[]defadd(self, x):self.data.append(x)defaddtwice(self, x):self.add(x)self.add(x)# Child extends Base class Child(Base):defplus(self,a,b):returnaboChildChild()oChild.add(str1)printoChild.dataprintoChild.plus(2,3)包机制每一个.py文件称为一个module,module之间可以互相导入.请参看以下例子:123# a.pydefadd_func(a,b):returnab12345# b.pyfromaimportadd_func# Also can be : import aprintImport add_func from module aprintResult of 1 plus 2 is: printadd_func(1,2)# If using import a , then here should be a.add_funcmodule可以定义在包里面.Python定义包的方式稍微有点古怪,假设我们有一个parent文件夹,该文件夹有一个child子文件夹.child中有一个module a.py . 如何让Python知道这个文件层次结构?很简单,每个目录都放一个名为_init_.py 的文件.该文件内容可以为空.这个层次结构如下所示:parent--__init_.py--child-- __init_.py--a.pyb.py那么Python如何找到我们定义的module?在标准包sys中,path属性记录了Python的包路径.你可以将之打印出来:123importsysprintsys.path通常我们可以将module的包路径放到环境变量PYTHONPATH中,该环境变量会自动添加到sys.path属性.另一种方便的方法是编程中直接指定我们的module路径到sys.path 中:12345678importsyssys.path.append(D:\\download)fromparent.child.aimportadd_funcprintsys.pathprintImport add_func from module aprintResult of 1 plus 2 is: printadd_func(1,2)总结这个教程很简单,其中包含了很多Python的特性在代码中显露出来