Code Drop
C++, Java, Python, PHP, Programming Tips, Linux, Bash Shell Scripting, Security And Tech Stuff
Showing posts with label
ip address
.
Show all posts
Showing posts with label
ip address
.
Show all posts
Friday, February 4, 2011
Turning a Hostname into an IP Address
#!/usr/bin/env python
#Get the IP Address
import socket
hostname = 'maps.google.com'
addr = socket.gethostbyname(hostname)
print 'The address of ', hostname, 'is', addr
Older Posts
Home
Subscribe to:
Posts (Atom)