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.

Prakt1_Socket.py 389B

12345678910111213141516171819
  1. import socket
  2. s = socket.socket()
  3. host = socket.gethostname()
  4. port = 21345
  5. s.bind((host, port))
  6. s.listen()
  7. while True:
  8. (connection, addr) = s.accept()
  9. print('Verbindung von ', addr)
  10. msg = 'Server sagt Hallo'
  11. connection.send(msg.encode('utf-8'))
  12. msg = connection.recv(1024)
  13. #connection.send(msg)
  14. msg = msg.decode('utf-8')
  15. print(msg)
  16. connection.close()