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
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
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
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
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
#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
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
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
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
1、python是什么? Python是一种编程语言,可以让你更快地工作,更有效地整合你的系统。 python是一种面向对象、解释型计算机程序设计语言。 2、python历史与发展 python由Guido van Rossum于1989年发明,第一个公开发行版发行于1991年。 python官方现 ...
分类:
编程语言 时间:
2016-06-02 13:21:32
阅读次数:
263