You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

demo_client.py 275B

12345678910111213141516
  1. import socket
  2. eingabe = input("Bitte etwas eingeben:")
  3. s = socket.socket()
  4. host = socket.gethostname()
  5. port = 12346
  6. s.connect((host, port))
  7. s.send(eingabe.encode('utf-8'))
  8. #bytes = s.recv(1024)
  9. #print(bytes.decode('utf-8'))
  10. print('Gesendet')
  11. msg3 = s.recv(1024)
  12. s.close()