After creating the socket and setting its options, we need to bind the port to the socket.
c.bind((host, port))
The binding done, we now tell the computer to wait and to listen on that port.
c.listen(1)
If we want to give feedback to the person who calls the server, we could now enter a print command to confirm that the server is up and running.
