http://meetbill.github.io/
发布时间:2016-08-20 20:27:55
str='python String function'生成字符串变量str='python String function'字符串长度获取:len(str)例:print '%s length=%d' % (str,len(str))字母处理全部大写:str.upper()全部小写:str.lower()大小写互换:str.swapcase()首字母大写,其余小写:str.capitalize()首字母大写:str.tit.........【阅读全文】
发布时间:2016-07-04 00:13:48
列表合并用list的extend方法,L1.extend(L2),该方法将参数L2的全部元素添加到L1的尾部,例如:>>> L1 = [1, 2, 3, 4, 5]>>> L2 = [20, 30, 40]>>> L1.extend(L2)>>> L1[1, 2, 3,&nbs.........【阅读全文】
发布时间:2016-07-04 00:08:16
python使用set来去重是一种常用的方法. 一般使用方法如下:12345678.........【阅读全文】
发布时间:2016-06-14 22:47:23
python编辑xls工具
?https://github.com/BillWang139967/XLSWriter?
?
?python xlwt设置列宽度......【阅读全文】
发布时间:2016-06-13 23:12:11
borders = xlwt.Borders()borders.left = 1borders.right = 1borders.top = 1borders.bottom = 1borders.bottom_colour=0x3A .........【阅读全文】