摘要:
python操作excel的工具类有很多,下面举几个常见的工具类: 一、 1、xlrd 只能读取excel操作,支持xls和xlsx两种格式的 2、xlwt 只能写入excel操作,只支持 xls格式的 3、xlsxwtiter 只能写入excel操作,同时支持xls格式和xlsx的 附python 阅读全文
摘要:
转自 http://blog.csdn.net/yl2isoft/article/details/52079960 1.使用成员操作符 in 2.使用string模块的find()/rfind()方法 3.使用string模块的index()/rindex()方法 index()/rindex()方 阅读全文
摘要:
1. 日期输出格式化 所有日期、时间的api都在datetime模块内。 1. datetime => string now = datetime.datetime.now() now.strftime('%Y-%m-%d %H:%M:%S') #输出2012-03-05 16:26:23.8701 阅读全文
摘要:
(1)遍历key值 >>> a {'a': '1', 'b': '2', 'c': '3'} >>> for key in a: print(key+':'+a[key]) a:1 b:2 c:3 >>> for key in a.keys(): print(key+':'+a[key]) a:1 阅读全文