- 论坛徽章:
- 0
|
我改成这样了:
# -*- coding: windows-1252 -*-
import socket #加载socket
import time #加载时间
import sys #加载sysimport
if __name__ == '__main__':
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind(('localhost', 8001))
sock.listen(5)
while True:
connection,address = sock.accept()
try:
connection.settimeout(5)
buf = connection.recv(1024)
if buf == '1':
connection.send('welcome to server!')
else:
connection.send('please go out!')
except socket.timeout:
print 'time out'
connection.close()
----------
但是示
File "C:\Documents and Settings\liuhanhua\桌面\s\python\S.py", line 15
if buf == '1':
^
SyntaxError: invalid syntax
[ 本帖最后由 caesarok 于 2009-2-4 13:55 编辑 ] |
|