码迷,mamicode.com
首页 > 编程语言 > 详细

python 获取远程设备ip地址

时间:2019-06-16 16:05:01      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:The   bsp   ons   try   network   设备   for   rem   --   

 

python2.7

#!/usr/bin/env python
# Python Network Programming Cookbook -- Chapter - 1
# This program is optimized for Python 2.7.
# It may run on any other version with/without modifications.


import socket

def get_remote_machine_info():
    remote_host = www.python.org
    try:
        print "IP address of %s: %s" %(remote_host, socket.gethostbyname(remote_host))
    except socket.error, err_msg:
        print "%s: %s" %(remote_host, err_msg)
    
if __name__ == __main__:
    get_remote_machine_info()

输出

IP address of www.python.org: 151.101.108.223

 

python 获取远程设备ip地址

标签:The   bsp   ons   try   network   设备   for   rem   --   

原文地址:https://www.cnblogs.com/sea-stream/p/11031500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!