From 1fe3f304880aef91c20f12db3304fb2a36e9eba9 Mon Sep 17 00:00:00 2001 From: Nadege Date: Sun, 20 Oct 2019 19:24:05 +0200 Subject: [PATCH] aufgabe1 --- client.py | 1 + 1 file changed, 1 insertion(+) 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