码迷,mamicode.com
首页 >  
搜索关键字:python基础学习    ( 391个结果
Python基础学习代码之序列
str1=‘abced‘ foriinrange(-1,-len(str1),-1)+[None]: printstr1[:i] s,t=‘abc‘,‘def‘ printzip(s,t) fori,tinenumerate(str1): printi,t printisinstance(‘foo‘,str) importstring defcheckid(): alphas=string.letters+‘_‘ nums=string.digits check=raw_input(‘inputid..
分类:编程语言   时间:2016-06-23 19:04:11    阅读次数:391
Python基础学习代码之执行环境
classC(object): def__call__(self,*args,**kwargs): print"I‘mcallable!calledwithargs:\n",args c=C() c(‘a‘,1) single_code=compile("print‘hello,world!‘",‘‘,‘single‘) exec(single_code) eval_code=compile(‘100*3‘,‘‘,‘eval‘) printeval(eval_code) #exec_code=compile..
分类:编程语言   时间:2016-06-23 19:02:36    阅读次数:219
Python基础学习代码之函数和函数式编程
deffunc1(): print‘helloworld‘ res=func1() printtype(res) deffunc2(): return[‘xyz‘,10000,-98] atuple=func2() x,y,z=func2() printx,y,z deffunc3(): return‘xyz‘,1000,-98 x,y,z=func3() printx,y,z deffunc4(): return[‘xyz‘,1000,-98,‘xxx‘] x,y,z,d=func4() alist=x,y..
分类:编程语言   时间:2016-06-23 19:02:35    阅读次数:256
Python基础学习代码之文件和输入输出
importos ls=os.linesep deffunc1(): filename=raw_input(‘enterfilename:‘) f=open(filename,‘w‘) whileTrue: alline=raw_input("enteraline(‘.‘toquit):") ifalline!=‘.‘: f.write("%s%s"%(alline,ls)) else: break f.close() deffunc2(): f=open(‘e:\\thefile.txt‘,‘w+‘) p..
分类:编程语言   时间:2016-06-23 19:02:33    阅读次数:279
Python基础学习代码之错误和异常
deffunc1(): try: returnfloat(‘abc‘) exceptValueError,e: printe deffunc2(): try: astr=‘abc‘ float(astr) exceptValueError: astr=None returnastr deffunc3(): try: astr=‘abc‘ float(astr) exceptValueError: astr=‘countnotconvertnon-numbertofloat‘ returnastr defsa..
分类:编程语言   时间:2016-06-23 19:02:24    阅读次数:202
Python基础学习代码之数字
#importmath #printcoerce(1L,134) #"""数据类型转换""" #printcoerce(0.4,123) #printcoerce(0j,234) #printdivmod(125,5) #"""除法运算""" #printdivmod(4,3) #printpow(2,4) #"""密""" #printround(3) #printround(3.666666,3) #printround(3.045,1) #printround(3.7777) #"..
分类:编程语言   时间:2016-06-23 19:02:23    阅读次数:298
Python基础学习代码之映像集合
deffunc1(): dict1={} dict2={‘name‘:‘earth‘,‘port‘:80} returndict1,dict2 deffunc2(): returndict(([‘x‘,1],[‘y‘,2])) deffunc3(): adict={}.fromkeys([‘x‘,‘y‘],23) returnadict deffunc4(): alist={‘name‘:‘earth‘,‘port‘:80} forkeysinalist.keys(): print"%s%s"%(key..
分类:编程语言   时间:2016-06-23 19:01:39    阅读次数:236
Python基础学习代码之条件和循环
deffunc1(): alist=[‘Cathy‘,‘Terry‘,‘Joe‘,‘Health‘,‘Lucy‘] foriinrange(-1,-len(alist)-1,-1): printi,alist[i] deffunc2(): alist=[‘Cathy‘,‘Terry‘,‘Joe‘,‘Health‘,‘Lucy‘] fori,nameinenumerate(alist): print‘%d%s‘%(i,name) importrandom deffunc3(): alist=[‘Cathy‘..
分类:编程语言   时间:2016-06-23 19:01:02    阅读次数:234
Python基础学习代码之面向对象编程
classAddrBookEntry(object): ‘addressbookentryclass‘ def__init__(self,nm,ph): self.name=nm self.phone=ph print‘createdinstancefor:‘,self.name defupdatephone(self,newph): self.phone=newph print‘updatephonefor:‘,self.name defupdatename(self,newname): self.name..
分类:编程语言   时间:2016-06-23 18:59:59    阅读次数:203
Python基础学习
1、python是什么? Python是一种编程语言,可以让你更快地工作,更有效地整合你的系统。 python是一种面向对象、解释型计算机程序设计语言。 2、python历史与发展 python由Guido van Rossum于1989年发明,第一个公开发行版发行于1991年。 python官方现 ...
分类:编程语言   时间:2016-06-02 13:21:32    阅读次数:263
391条   上一页 1 ... 31 32 33 34 35 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!