python ping
时间: 2023-10-30 18:04:51 浏览: 113
python-ping:python ping
你可以使用Python的`subprocess`模块来实现ping操作。下面是一个使用Python进行ping的示例代码:
```python
import subprocess
hostname = "www.google.com"
response = subprocess.Popen(["ping", "-c", "1", hostname], stdout=subprocess.PIPE).stdout.read()
print(response)
```
在上面的代码中,我们使用`subprocess`模块来执行ping命令。`Ping`命令的参数`-c 1`表示只发送1个ICMP数据包,而`stdout=subprocess.PIPE`表示将输出结果保存在`response`变量中。最后,我们将结果打印出来。
阅读全文