http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2011-12-01 15:32:22
>>> s=['hello','world','my','name','is','Brooks.Lee']>>> for i,ss in enumerate(s): print i,ss 0 hello1 world2 my3 name4 is5 Brooks.Lee......【阅读全文】
发布时间:2011-12-01 15:16:35
Python中打印字符串时可以调用ljust(左对齐),rjust(右对齐),center(中间对齐)来输出整齐美观的字符串,使用起来非常简单,包括使用第二个参数填充(默认为空格)。看下面的例子就会明白了:<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->pr.........【阅读全文】
发布时间:2011-11-30 10:59:44
>>> str1='Bruce.Lee'>>> lis1=list(str1)>>> lis1['B', 'r', 'u', 'c', 'e', '.', 'L', 'e', 'e']>>> tmp1=reduce((lambda x,y:x+y),lis1)>>> tmp1'Bruce.Lee'>>> tmp2=''.join(lis1)>>> tmp2'Bruce.Lee'>>> ......【阅读全文】
发布时间:2011-11-30 10:26:26
#coding:gbks1=[1,2,3,4,5]s2=[11,12,13,14,15]m=map(lambda x,y:x+y,s1,s2)print "type(m) is:",type(m)print "m=",ms=[1,2,3,4,5]sum=reduce((lambda x,y:x+y),s)print "type(sum) is:",type(sum)print "sum=",sum 运行结果:type(m) is: <type 'list'>m= [12, 14, 16, 18, 20]type(.........【阅读全文】