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.

clie2_file.py 273B

1234567891011121314151617
  1. import socket
  2. eingabe = input("Bitte etwas eingeben: ")
  3. s = socket.socket()
  4. host = socket.gethostname()
  5. port = 12345
  6. s.connect((host, port))
  7. while eingabe != "STOP":
  8. s.send(eingabe.encode('utf-8'))
  9. eingabe = input("Bitte etwas eingeben: ")
  10. else:
  11. s.close()