手机
当前位置:查字典教程网 >脚本专栏 >python >python实现简单的socket server实例
python实现简单的socket server实例
摘要:本文实例讲述了python实现简单的socketserver的方法。分享给大家供大家参考。具体如下:importsockethost=''p...

本文实例讲述了python实现简单的socket server的方法。分享给大家供大家参考。具体如下:

import socket host = '' port = 55555 myServerSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) myServerSocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR,1) myServerSocket.bind((host, port)) myServerSocket.listen(1) print "Server is running on port %d; press Ctrl-C to terminate." % port while 1: clientsock, clientaddr = myServerSocket.accept() clientfile = clientsock.makefile('rw', 0) clientfile.write("Welcome, " + str(clientaddr) + "n") clientfile.write("Please enter a string: ") line = clientfile.readline().strip() clientfile.write("You entered %d characters.n" % len(line)) clientfile.close() clientsock.close()

希望本文所述对大家的Python程序设计有所帮助。

【python实现简单的socket server实例】相关文章:

用python实现批量重命名文件的代码

python socket 超时设置 errno 10054

python实现跨文件全局变量的方法

基于Python实现的扫雷游戏实例代码

python计算最大优先级队列实例

python实现目录树生成示例

python实现爬虫下载漫画示例

python创建线程示例

python实现文件分组复制到不同目录的例子

python实现倒计时的示例

精品推荐
分类导航