Answers for "how to ping a website python"

2

how to ping a website in python

from os import system
print('1. Ping Google')
print('2. Ping Yahoo')
print('3. Ping custom URL')
while True:
    key = int(input('Input your choice: '))
    if key == 1:
            system("ping www.google.com")
    elif key == 2:
            system("ping www.yahoo.com")
    elif key == 3:
            url = input('Enter URL: ')
            system("ping " + url)
    else:
            print("Invalid Option!")
Posted by: Guest on January-02-2021
0

how to get ping from computer IN PYTHON

st = Speedtest()
    print("Download:=>", st.download())
    print("upload:=>", st.upload())
    st.get_servers([])
    print("Ping :=>", st.results.ping)
Posted by: Guest on July-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language