Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 9
import os hostname = "google.com" #example response = os.system("ping -c 1 " + hostname) #and then check the response... if response == 0: print hostname, 'is up!' else: print hostname, 'is down!'
24th Apr 2017, 2:54 PM
Akshay Jadhav
Akshay Jadhav - avatar