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-08-18 09:57:05
1. tornado logging使用的python内置的logging模块2. 在tornado/options.py 中定义了对logging配置项的一些定义(如果需要添加启动参数,需要在对应的代码中导入options模块),以下是一些在options.py中定义的Option-help-logging = info|warning|error|none-log_to_stderr = True|False-log_file_prefix = your path.........【阅读全文】
发布时间: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设置列宽度......【阅读全文】