Report Bug
Qus : Which module in python can be used for working with network socket?
Qusपायथन में किस मॉड्यूल का उपयोग नेटवर्क सॉकेट के साथ काम करने के लिए किया जा सकता है?

A. HTTP
B. urllib
C. socket
D. header


Solution
C. socket



Explanation
In Python, the socket module is used for working with network sockets. The socket module provides a low-level interface to create and interact with sockets, which are endpoints for sending or receiving data across a computer network. Sockets are fundamental building blocks for network communication in both client-server and peer-to-peer scenarios.



Report Bug