পাইথন gethostname(), gethostbyname() দুটি ফাংশন প্রদান করে। gethostname() স্থানীয় মেশিনের জন্য আদর্শ হোস্ট নাম পুনরুদ্ধার করে। gethostbyname() হোস্ট ডাটাবেস থেকে হোস্ট নামের সাথে সম্পর্কিত হোস্ট তথ্য পুনরুদ্ধার করে।
Socket. gethostname() Socket. gethostbyname()
অ্যালগরিদম
Step 1: use module socket. Step 2: use gethostname() retrives the standard host name for the local machine. Step 3: use gethostbyname() retrives host information corresponding to a host name from a host database.
উদাহরণ কোড
# Display hostname andIP address import socket def host_IP(): try: hname = socket.gethostname() hip = socket.gethostbyname(hname) print("Hostname: ",hname) print("IP Address: ",hip) except: print("Unable to get Hostname and IP") # Driver code host_IP() #Function call
আউটপুট
Hostname: Satyajit-PC IP Address: 192.168.1.66