Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法我可以 ping 特定网站的特定号码的请求。使用 Python 的次数,还有一种方法可以让我决定否。每个请求中要发送的数据包数?
您可以为此使用 os 模块。
5 是计数 www.examplesite.com 是站点
import os os.system("ping -c 5 www.examplesite.com")
希望它有所帮助