通过Python判断主机是否存在

发布时间:2019-07-30 10:52:59编辑:auto阅读(2134)


    判断对方主机是否存在!


    import os
    
    status = os.system("ping -c 1 www.baidu.com");
    
    if status == 0:
        print '连接成功!';
    else:
        print '连接失败';



关键字