博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python2.7_1.3_获取远程设备的IP地址
阅读量:6207 次
发布时间:2019-06-21

本文共 362 字,大约阅读时间需要 1 分钟。

代码如下:

# -*- coding: utf-8 -*-import socketdef get_remote_machine_info():    remote_host = 'www.python.org'    try:        print 'IP address:%s' % socket.gethostbyname(remote_host)    except socket.error, err_msg:        print '%s:%s' % (remote_host, err_msg)if __name__ == '__main__':    get_remote_machine_info()

 

转载于:https://www.cnblogs.com/jsben/p/5166865.html

你可能感兴趣的文章
Ubuntu 12.04 安装设置gcc4.4
查看>>
爬虫笔记(十二)——浏览器伪装技术
查看>>
【LeetCode算法题库】Day1:TwoSums & Add Two Numbers & Longest Substring Without Repeating Characters...
查看>>
前端介绍-35
查看>>
bootstrap 中这段代码 使bundles 失败
查看>>
IOS 多线程04-GCD详解 底层并发 API
查看>>
Kali渗透测试——利用metasploit攻击靶机WinXP SP1
查看>>
pytest自动化6:pytest.mark.parametrize装饰器--测试用例参数化
查看>>
BZOJ 2003 [Hnoi2010]Matrix 矩阵
查看>>
apply和call用法
查看>>
爬虫之数据解析的三种方式
查看>>
hdu5424 Rikka with Graph II
查看>>
关于有多少个1的计算
查看>>
js里的数据类型转换
查看>>
Hbase java api
查看>>
CentOS6.5安装配置
查看>>
SOM 的两种算法
查看>>
实现权重计算
查看>>
[10.5模拟] dis
查看>>
leetcode1042
查看>>