
Python
HisinWang
CAD二次开发从业者。
QQ: 280338447
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python发邮件
以下代码从wangyao1052@163.com发邮件给'280338447@qq.com'import smtplibsender = 'wangyao1052@163.com'receivers = ['280338447@qq.com']message = '''\From: wangyao To: Hisin Subject: TestThis is a原创 2012-10-26 23:56:29 · 951 阅读 · 0 评论 -
Python Socket编程范例
参考文章:Python Network ProgrammingServer.pyimport socket print 'Server'host = ''port = 50000 backlog = 5 size = 1024 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind((host,port原创 2012-10-27 00:46:32 · 1005 阅读 · 0 评论 -
Python学习资源
1. Python官网2. tutorialspoint::python原创 2012-10-26 23:38:40 · 624 阅读 · 0 评论