Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python program for getting url, hostname, port numbers

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}")
Comment

PREVIOUS NEXT
Code Example
Python :: Python - Comment convertir le texte en discours 
Python :: python sleeping with a varible 
Python :: imagefont cannot open resource 
Python :: python calander from Programmer of empires but updated 
Python :: how to join two string series python 
Python :: Multiple page PyQt QStackedWidget 
Python :: summarize within arcpy 
Python :: fuiyoh 
Python :: exception: python in worker has different version 3.7 than that in driver 3.8, pyspark cannot run with different minor versions. please check environment variables pyspark_python and pyspark_driver_python are correctly set. 
Python :: initials of name 
Python :: matplotlib smooth loss curves 
Python :: ublox kismet 
Python :: #finding the similarity among two sets and 1 if statement 
Python :: init matrix in numpy 
Python :: numpy create array with infinities 
Python :: bsakbs 
Python :: make n copies of item in list 
Python :: fetch the appropriate version based on chrome python 
Python :: auto clipping path when upload image using python 
Python :: how to use displacy 
Python :: telecharger pade python 
Python :: form a chakravyuh matrix python 
Python :: cvhaardetectobjects 
Python :: duplicate finder python modules 
Python :: python in a nutshell 
Python :: python selenium not returning correct source 
Python :: Faster way to find list of unique elements in a list 
Python :: fibonacci sequence algorithm python 
Python :: fake-useragent proxy webscraping browser change 
Python :: Convert a list of dictionary into a feature vector 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =