python program to ping a website code example

Example 1: 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!")

Example 2: 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)