码迷,mamicode.com
首页 >  
搜索关键字:python email from to    ( 191911个结果
python程序运行时间
python程序运行时间>>>importtime>>>start=time.clock()#runcode>>>end=time.clock()>>>end-start
分类:编程语言   时间:2015-09-15 14:56:52    阅读次数:144
通过读取excel数据和mysql数据库数据做对比(一)-win环境准备
要想操作excel和mysql首先需要安装python,然后是安装excel和mysql插件;第一步安装python;直接百度搜索,下载安装就可以了。第二步安装excel插件;首先到这个http://pypi.python.org/pypi/xlrd网址下载插件;由于这个网站打开缓慢(国内打开国外网...
分类:数据库   时间:2015-09-15 14:45:22    阅读次数:177
python安装和eclipse安装及环境变量配置
非常好的技术文档,链接如下:http://jingyan.baidu.com/article/eb9f7b6da950c4869364e8f5.html感谢作者的分享http://python.usyiyi.cn/ python中文官方文档
分类:编程语言   时间:2015-09-15 14:37:06    阅读次数:113
ORACLE declare 简单实例
--向内容发指令;declareint_count number(10);beginint_count := 0; for cc in (select t.*,t.rowid from w902053.tmp_shengchanduchu_zc t where t.flag ='sendOK' an...
分类:数据库   时间:2015-09-15 14:31:45    阅读次数:505
From MSI to WiX, Part 8 - Major Upgrade, by Alex Shevchuk
Following content is reprinted from here, please go to the original website for more information.Author: Alex ShevchukIntroductionA typical Major Upgr...
分类:其他好文   时间:2015-09-15 14:27:30    阅读次数:173
每日python(7)
使用 % 将字典中的value嵌入到字符串中对应的key值中dd = {"a":1,"b":2,"c":3}txt = "this is a test : a is %(a)s, b is %(b)s, c is %(c)s "print txt % dd结果为:this is a test : a...
分类:编程语言   时间:2015-09-15 14:20:53    阅读次数:151
oracle删除同一张表的重复记录
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 select * from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > ...
分类:数据库   时间:2015-09-15 14:20:35    阅读次数:166
Linux环境下,traceroute返回一系列*原因分析
Traceroute transmits packets with small TTL (Time To Live) values.The TTL is an IP header field that is used to prevent packets from running into endl...
分类:系统相关   时间:2015-09-15 14:16:38    阅读次数:909
python模块介绍-threading: 线程 管理并发操作
定义线程 最简单的方法:使用target指定线程要执行的目标函数,再使用start()启动。 语法: class?threading.Thread(group=None,?target=None,?name=None,?args=(),?kwargs={}) group恒为None,保留未来使用...
分类:编程语言   时间:2015-09-15 13:11:36    阅读次数:230
C#简单邮件发送
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage(); message.From = new System.Net.Mail.MailAddress("*****@163.com"); ...
分类:Windows程序   时间:2015-09-15 13:01:55    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!