[root@iZ94gh8l046Z python]# python
Python 2.7.5 (default, Jun 17 2014, 18:11:42)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-16)] on linux2
Type help, copyright, credits or license for more information.
>>> import socket
>>> help(socket.gethostname)
Help on built-in function gethostname in module _socket:
gethostname(...)
gethostname() -> string
Return the current host name.
>>> help(socket.gethostbyname)
Help on built-in function gethostbyname in module _socket:
gethostbyname(...)
gethostbyname(host) -> address
Return the IP address (a string of the form '255.255.255.255') for a host.
>>>
说明:
import socket:导入python提供的一个核心网络库
help(socket.gethostname):查看帮助信息
gethostname:没有参数,返回所在主机或本地主机的名字
gethostbyname:接收一个参数hostname,返回对应的IP
相关报道:
虽然不是自己写的,但是改了三个部分,网上发的这个,quit退出功能无法使用,因为传过来的字符串其实是加了 n的 更多
背景描述 如果之前看过《动态代理在WEB与JDBC开发中的应用(WEB篇)》,这篇的内容可以全当是另一种应用的进阶举例,而在实现上确实没有太多进步的地方。我们先看一下项目所面临问题以及期望解决方案。在作者所接触的这个项目中,直接使用原始JDBC技术,java. 更多