1. 首页
  2. 数据库
  3. 其它
  4. 对python判断ip是否可达的实例详解

对python判断ip是否可达的实例详解

上传者: 2020-12-31 16:49:42上传 PDF文件 32.77KB 热度 20次
python中使用subprocess来使用shell 关于threading的用法 from __future__ import print_function import subprocess import threading def is_reachable(ip): if subprocess.call([ping, -c, 2, ip])==0:#只发送两个ECHO_REQUEST包 print({0} is alive..format(ip)) else: print({0} is unalive.format(ip)) if __na
用户评论