How to check ping status of a domain/host name in python ?
Today in this post, we will understand how to check ping status of a domain in python programming language. I. Program import os response=os.system("ping -c 2 google.com") if (response ==...