0
How do i run two socket codes at the same time server.py and client.py
These connections need to communicate but how can i make them communicate if i can't run them at the same time
2 Answers
+ 2
Sockets are meant to be done over a series of computers and not one computer alone. You can run both at the same time on a computer by opening two shell windows and running one script on each, but you can't do that here on SoloLearn.
0
You can't open two command windows and run both server and client?