diff --git a/client.py b/client.py index 6110889..517e5a9 100644 --- a/client.py +++ b/client.py @@ -3,6 +3,7 @@ s= socket.socket() host=socket.gethostname() port= 12345 s.connect((host , port)) +msg = input('geben sie was ein: ') bytes= s.recv(1024) print(bytes.decode('utf-8') ) s.close() \ No newline at end of file