zoukankan      html  css  js  c++  java
  • python 获取远程设备ip地址

    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
  • 相关阅读:
    Android登入界面
    安卓第4周作业
    第13周作业
    5.28上机作业
    5.22作业
    数据返回值
    登录
    安卓
    安卓第四周
    安卓第四周
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11031500.html
Copyright © 2011-2022 走看看