效字当先,以质为本。测试开发入行十余年,辉煌过,迷茫过,持续探寻人生的激情和前进的步伐!好好生活,认真工作!
发布时间:2013-10-24 10:51:37
因为经常用到对excel的相关操作,今天就在此总结相关内容,方便大家参考。python操作excel除了读就是写。从读开始xlrdhttp://pypi.python.org/pypi/xlrd导入import xlrd打开excelfile = xlrd.open_workbook('demo.xls')查看文件中包含sheet的名称file.sheet_names()得到第一个工作表,或.........【阅读全文】
发布时间:2013-10-22 16:50:24
先看两段代码:1、点击(此处)折叠或打开def input_data_wow(): channels_massage = get_db_neteasewow() if os.path.exists("wow_list_dong")==True: &nb.........【阅读全文】
发布时间:2013-10-21 12:00:19
#read LogPubChannelConfig.xml logpubtypedef get_logpubtype():log_pub = ElementTree.parse(r"LogPubChannelConfig.xml") #xml文件名log_pub_node = log_pub.find("channels") #channels是节点for a in log_pub_node:print a.attrib['channelName'],a.attrib['channelId'],a.attrib['pubFormatType'].........【阅读全文】
发布时间:2013-09-17 16:21:01
1、sort()是可变对象(字典、列表)的方法,无参数,无返回值,sort()会改变可变对象,因此无需返回值;如:2、sorted()是python的内置函数,并不是可变对象(列表、字典)的特有方法,sorted()函数需要一个参数(参数可以是列表、字典、元组、字符串),无论传递什么参数,都将返回一个以列表为容器的返回值,如果是字典.........【阅读全文】
发布时间:2013-09-11 10:39:20
把datetime转成字符串 def datetime_toString(dt):return dt.strftime("%Y-%m-%d-%H")#把字符串转成datetime def string_toDatetime(string):return datetime.strptime(string, "%Y-%m-%d-%H")#把字符串转成时间戳形式 def string_toTimestamp(strTime):.........【阅读全文】