add sourcecode

This commit is contained in:
Jimmy Xiang
2020-11-12 17:02:10 +08:00
parent bf7c50956c
commit f698082a29
23 changed files with 2746 additions and 0 deletions

8
04/client.py Normal file
View File

@@ -0,0 +1,8 @@
import socket
sock_ = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
sock_.connect((socket.gethostname(),9337))
msg = sock_.recv(1024)
sock_.close()
print(msg.decode("ascii"))