效字当先,以质为本。测试开发入行十余年,辉煌过,迷茫过,持续探寻人生的激情和前进的步伐!好好生活,认真工作!
发布时间:2013-11-05 14:47:07
在Python里我们可以使用smtplib模块发送email,smtp(Simple Mail Transfer Protocal),是简单邮件传输协议,通过它可以和smtp server进行通讯。http://blog.csdn.net/dbanote/article/details/8924686#1536434-hi-1-5983-42d97150898b1af15ddaae52f91f09c2......【阅读全文】
发布时间:2013-10-24 11:43:47
from xlwt import * '''对excel增加行''' def writeRow(tableObj,rowNum,tmpList,xlsStyleDict={}): for num,o in enumerate(tmpList): if num in xlsStyleDict: style = xlsSty.........【阅读全文】
发布时间: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'].........【阅读全文】