如何使用Python ping ip并仅获取Tk中的ms?

发布于 2024-08-24 16:15:08 字数 69 浏览 1 评论 0原文

我想制作一个小 tk 应用程序,连续 ping 一个 ip 并且只显示 MS,比如“10ms”

我该怎么办?

I want to make a little tk app that continuous ping an ip and only show the MS, like, "10ms"

how could I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空名 2024-08-31 16:15:08

如果您想使用 Windows ping,则必须解析命令行的输出。

这是非常具体的,但应该有效:

import os
while(1):
    ping = os.popen('ping www.google.com -n 1')
    result = ping.readlines()
    msLine = result[-1].strip()
    print msLine.splot(' = ')[-1]

If you want to use Windows ping, you'll have to parse the output from the command line.

This is very specific, but should work:

import os
while(1):
    ping = os.popen('ping www.google.com -n 1')
    result = ping.readlines()
    msLine = result[-1].strip()
    print msLine.splot(' = ')[-1]
枫以 2024-08-31 16:15:08

连续 ping 一个 IP

os.system("ping -t 192.168.1.1")

To continuously ping an IP

os.system("ping -t 192.168.1.1")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文