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.
12345678910111213 |
- import socket
- s = socket.socket()
- host = socket.gethostname()
- port = 22445
-
-
- s.connect((host, port))
- message = input('eingabe: ')
- #bytes = s.sendmsg(message.encode('utf-8'))
- test = s.send(message.encode('utf-8'))
- msg = s.recv(1024)
- print (msg.decode('utf-8'))
- s.close()
|