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 236B

123456789101112131415
  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)
  8. bytes = s.recv(1024)
  9. print(bytes.decode('utf-8'))
  10. print('Receipt')
  11. s.close()