http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
全部博文(214)
发布时间: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(.........【阅读全文】
发布时间:2011-11-28 13:06:42
Python and django(四)前面的内容:python and Django(一) 准备工作python and Django(二) 走马观花识python python and Django(三) 下马看花赏python-python中的对象 从这篇起开始详细介.........【阅读全文】
发布时间:2011-11-28 13:04:51
今天写程序的时候碰到了一个问题关于如何控制浮点数只显示小数点后两位,正常的想法是用round函数,例如 round(a, 2),但是在面对下面的问题时候round就不太好用了 >>> a=13.949999999999999>>> round(a, 2)13.949999999999999 上网查了资料,有网友提供了一种.........【阅读全文】