Introduction
Write a Python program to get the name of the host on which the routine is running. I have used python 3.7 compiler for debugging purpose.
import socket host_name = socket.gethostname() print() print("Host name:", host_name) print()
Write a Python program to get the name of the host on which the routine is running. I have used python 3.7 compiler for debugging purpose.
import socket host_name = socket.gethostname() print() print("Host name:", host_name) print()