इस ट्यूटोरियल में, हम IP . खोजने जा रहे हैं सॉकेट . का उपयोग कर क्लाइंट का पता पायथन . में मॉड्यूल . प्रत्येक लैपटॉप, मोबाइल, टैबलेट आदि का अपना विशिष्ट IP . होता है पता। हम इसे सॉकेट मॉड्यूल का उपयोग करके पाएंगे। आइए देखें IP . का पता लगाने के चरण डिवाइस का पता.
एल्गोरिदम
1. Import the socket module. 2. Get the hostname using the socket.gethostname() method and store it in a variable. 3. Find the IP address by passing the hostname as an argument to the socket.gethostbyname() method and store it in a variable. 4. Print the IP address.
आइए उपरोक्त एल्गोरिथम के लिए कोड लिखें।
उदाहरण
## importing socket module import socket ## getting the hostname by socket.gethostname() method hostname = socket.gethostname() ## getting the IP address using socket.gethostbyname() method ip_address = socket.gethostbyname(hostname) ## printing the hostname and ip_address print(f"Hostname: {hostname}") print(f"IP Address: {ip_address}")
आउटपुट
यदि आप उपरोक्त प्रोग्राम चलाते हैं, तो आपको निम्न आउटपुट मिलेगा।
Hostname: DESKTOP-A0PM5GD IP Address: 192.168.43.15
निष्कर्ष
यदि आपको ट्यूटोरियल के बारे में कोई संदेह है, तो उनका टिप्पणी अनुभाग में उल्लेख करें।