Python 3 教程Word下载.docx

上传人:b****5 文档编号:21499961 上传时间:2023-01-30 格式:DOCX 页数:13 大小:23.35KB
下载 相关 举报
Python 3 教程Word下载.docx_第1页
第1页 / 共13页
Python 3 教程Word下载.docx_第2页
第2页 / 共13页
Python 3 教程Word下载.docx_第3页
第3页 / 共13页
Python 3 教程Word下载.docx_第4页
第4页 / 共13页
Python 3 教程Word下载.docx_第5页
第5页 / 共13页
点击查看更多>>
下载资源
资源描述

Python 3 教程Word下载.docx

《Python 3 教程Word下载.docx》由会员分享,可在线阅读,更多相关《Python 3 教程Word下载.docx(13页珍藏版)》请在冰豆网上搜索。

Python 3 教程Word下载.docx

e=a+int(d)

#Howtoprintmultiplyvalues

print("

cis%s,eis%i"

%(c,e))

*用int和str函数将字符串和数字进行转换

*打印以#开头,而不是习惯的//

*打印多个参数的方式

'

3列表

utf8-*-

#列表类似Javascript的数组,方便易用

#定义元组

word=['

a'

'

b'

c'

d'

e'

f'

g'

]

#如何通过索引访问元组里的元素

a=word[2]

ais:

"

+a)

b=word[1:

3]

bis:

print(b)#index1and2elementsofword.

c=word[:

2]

cis:

print(c)#index0and1elementsofword.

d=word[0:

dis:

print(d)#Allelementsofword.

#元组可以合并

e=word[:

2]+word[2:

eis:

print(e)#Allelementsofword.

f=word[-1]

fis:

print(f)#Thelastelementsofword.

g=word[-4:

-2]

gis:

print(g)#index3and4elementsofword.

h=word[-2:

his:

print(h)#Thelasttwoelements.

i=word[:

iis:

print(i)#Everythingexceptthelasttwocharacters

l=len(word)

Lengthofwordis:

+str(l))

Addsnewelement"

word.append('

h'

print(word)

#删除元素

delword[0]

delword[1:

*列表长度是动态的,可任意添加删除元素.

*用索引可以很方便访问元素,甚至返回一个子列表

*更多方法请参考Python的文档

4字典

x={'

:

aaa'

bbb'

12}

print(x['

])

forkeyinx:

print("

Keyis%sandvalueis%s"

%(key,x[key]))

*将他当Java的Map来用即可.

5字符串

比起C/C++,Python处理字符串的方式实在太让人感动了.把字符串当列表来用吧.

word="

abcdefg"

+b)#index1and2elementsofword.

+c)#index0and1elementsofword.

+d)#Allelementsofword.

+e)#Allelementsofword.

+f)#Thelastelementsofword.

+g)#index3and4elementsofword.

+h)#Thelasttwoelements.

+i)#Everythingexceptthelasttwocharacters

中文和英文的字符串长度是否一样?

s=input("

输入你的中文名,按回车继续"

);

你的名字是:

+s)

l=len(s)

你中文名字的长度是:

+str(l))

∙类似Java,在python3里所有字符串都是unicode,所以长度一致.

6条件和循环语句

#条件和循环语句

x=int(input("

Pleaseenteraninteger:

))

ifx<

0:

x=0

Negativechangedtozero"

elifx==0:

Zero"

else:

More"

#LoopsList

a=['

cat'

'

window'

defenestrate'

forxina:

print(x,len(x))

#知识点:

#*条件和循环语句

#*如何得到控制台输入

7函数

defsum(a,b):

returna+b

func=sum

r=func(5,6)

print(r)

#提供默认值

defadd(a,b=2):

r=add

(1)

r=add(1,5)

一个好用的函数

#Therange()function

a=range(1,10)

foriina:

print(i)

a=range(-2,-11,-3)#The3rdparameterstandsforstep

∙Python不用{}来控制程序结构,他强迫你用缩进来写程序,使代码清晰.

∙定义函数方便简单

∙方便好用的range函数

8异常处理

Inputyourage:

ifs=="

raiseException("

Inputmustnobeempty."

try:

i=int(s)

exceptExceptionaserr:

print(err)

finally:

#Cleanupaction

print("

Goodbye!

9文件处理

对比Java,python的文本处理再次让人感动

spath="

D:

/download/baa.txt"

f=open(spath,"

w"

)#Opensfileforwriting.Createsthisfiledoesn'

texist.

f.write("

Firstline1.\n"

f.writelines("

Firstline2."

f.close()

r"

)#Opensfileforreading

forlineinf:

每一行的数据是:

%s"

%line)

∙open的参数:

r表示读,w写数据,在写之前先清空文件内容,a打开并附加内容.

∙打开文件之后记得关闭

10类和继承

classBase:

def__init__(self):

self.data=[]

defadd(self,x):

self.data.append(x)

defaddtwice(self,x):

self.add(x)

#ChildextendsBase

classChild(Base):

defplus(self,a,b):

oChild=Child()

oChild.add("

str1"

print(oChild.data)

print(oChild.plus(2,3))

*self:

类似Java的this参数

11包机制

每一个.py文件称为一个module,module之间可以互相导入.请参看以下例子:

#a.py

defadd_func(a,b):

#b.py

fromaimportadd_func#Alsocanbe:

importa

Importadd_funcfrommodulea"

Resultof1plus2is:

print(add_func(1,2))#Ifusing"

importa"

thenhereshouldbe"

a.add_func"

module可以定义在包里面.Python定义包的方式稍微有点古怪,假设我们有一个parent文件夹,该文件夹有一个child子文件夹.child中有一个modulea.py.如何让Python知道这个文件层次结构?

很简单,每个目录都放一个名为_init_.py的文件.该文件内容可以为空.这个层次结构如下所示:

parent

--__init_.py

--child

--__init_.py

--a.py

b.py

那么Python如何找到我们定义的module?

在标准包sys中,path属性记录了Python的包路径.你可以将之打印出来:

importsys

print(sys.path)

通常我们可以将module的包路径放到环境变量PYTHONPATH中,该环境变量会自动添加到sys.path属性.另一种方便的方法是编程中直接指定我们的module路径到sys.path中:

importos

sys.path.append(os.getcwd()+'

\\parent\\child'

fromaimportadd_func

print(sys.path)

print(add_func(1,2))

∙如何定义模块和包

∙如何将模块路径添加到系统路径,以便python找到它们

∙如何得到当前路径

12内建帮助手册

对比C++,Java的突出进步是内建Javadoc机制,程序员可以通过阅读Javadoc了解函数用法.Python也内建了一些方便函数以便程序员参考.

∙dir函数:

查看某个类/对象的方法.如果有某个方法想不起来,请敲dir.在idle里,试试dir(list)

∙help函数:

详细的类/对象介绍.在idle里,试试help(list)

Python3教程二:

文件,目录和路径

1遍历文件夹和文件

importos.path

#os,os.path里包含大多数文件访问的函数,所以要先引入它们.

#请按照你的实际情况修改这个路径

rootdir="

d:

/download"

forparent,dirnames,filenamesinos.walk(rootdir):

#case1:

fordirnameindirnames:

parentis:

+parent)

dirnameis:

+dirname)

#case2

forfilenameinfilenames:

filenamewithfullpath:

+os.path.join(parent,filename))

*os.walk返回一个三元组.其中dirnames是所有文件夹名字(不包含路径),filenames是所有文件的名字(不包含路径).parent表示父目录.

*case1演示了如何遍历所有目录.

*case2演示了如何遍历所有文件.

*os.path.join(dirname,filename):

将形如"

/a/b/c"

和"

d.java"

变成/a/b/c/d.java"

.

2分割路径和文件名

#常用函数有三种:

分隔路径,找出文件名.找出盘符(windows系统),找出文件的扩展名.

#根据你机器的实际情况修改下面参数.

/download/repository.7z"

#case1:

p,f=os.path.split(spath);

diris:

+p)

fileis:

+f)

#case2:

drv,left=os.path.splitdrive(spath);

driveris:

+drv)

leftis:

+left)

#case3:

f,ext=os.path.splitext(spath);

extis:

+ext)

知识点:

这三个函数都返回二元组.

*case1分隔目录和文件名

*case2分隔盘符和文件名

*case3分隔文件和扩展名

总结:

5个函数

∙os.walk(spath)

∙os.path.split(spath)

∙os.path.splitdrive(spath)

∙os.path.splitext(spath)

∙os.path.join(path1,path2)

3复制文件

importshutil

src="

\\download\\test\\myfile1.txt"

dst="

\\download\\test\\myfile2.txt"

dst2="

/download/test/测试文件夹.txt"

dir1=os.path.dirname(src)

dir1%s"

%dir1)

if(os.path.exists(src)==False):

os.makedirs(dir1)

f1=open(src,"

f1.write("

linea\n"

lineb\n"

f1.close()

shutil.copyfile(src,dst)

shutil.copyfile(src,dst2)

f2=open(dst,"

forlineinf2:

print(line)

f2.close()

#测试复制文件夹树

srcDir="

/download/test"

dstDir="

/download/test2"

#如果dstDir已经存在,那么shutil.copytree方法会报错!

#这也意味着你不能直接用d:

作为目标路径.

shutil.copytree(srcDir,dstDir)

print(err)

*shutil.copyfile:

如何复制文件

*os.path.exists:

如何判断文件夹是否存在

*shutil.copytree:

如何复制目录树

4个函数

∙os.path.dirname(path)

∙os.path.exists(path)

∙shutil.copyfile(src,dst)

∙shutil.copytree(srcDir,dstDir)

4实战:

文件备份小程序

importdatetime

作用:

将目录备份到其他路径。

实际效果:

假设给定目录"

/media/data/programmer/project/python"

备份路径"

/home/diegoyun/backup/“,

则会将python目录备份到备份路径下,形如:

/home/diegoyun/backup/yyyymmddHHMMSS/python/xxx/yyy/zzz

..

用法:

更改这两个参数.

backdir:

备份目的地.

copydirs:

想要备份的文件夹.

defmainLogic():

#adddirsyouwanttocopy

backdir="

\\test"

print(backdir)

copydirs=[]

copydirs.append("

\\temp"

#copydirs.append("

Copyingfiles==================="

start=datetime.datetime.now()

#genadatafolderforbackup

backdir=os.path.join(backdir,start.strftime("

%Y-%m-%d"

#print("

backdiris:

+backdir)

kc=0

fordincopydirs:

kc=kc+copyFiles(d,backdir)

end=datetime.datetime.now()

Finished!

==================="

Totalfiles:

+str(kc))

Elapsedtime:

+str((end-start).seconds)+"

seconds"

defcopyFiles(copydir,backdir):

prefix=getPathPrefix(copydir)

prefixis:

+prefix)

i=0

fordirpath,dirnames,filenamesinos.walk(copydir):

fornameinfilenames:

oldpath=os.path.join(dirpath,name)

newpath=omitPrefix(dirpath,prefix)

+backdir)

newpath=os.path.join(backdir,newpath)

newpathis:

+newpath)

ifos.path.exists(newpath)!

=True:

os.makedirs(newpath)

newpath=os.path.join(newpath,name)

From:

+oldpath+"

to:

shutil.copyfile(oldpath,newpath)

i=i+1

returni

defgetPathPrefix(fullpath):

#Giving/media/data/pro

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 初中教育

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1