Linux ping command getting rtt

I am new to Linux and i am trying to ping a server and i wonder How to get or calculate median of Round Trip Time (RTT) n Linux ?

Ping or Packet Internet Groper is a network administration utility used to check the connectivity status between a source and a destination computer/device over an IP network. It also helps you assess the time it takes to send and receive a response from the network.

$ ping -c 5 127.0.0.1

Round trip time(RTT) is the length of time it takes for a signal to be sent plus the length of time it takes for an acknowledgement of that signal to be received. This time therefore consists of the propagation times between the two point of signal. On the Internet, an end user can determine the RTT to and from an IP(Internet Protocol) address by pinging that address. The result depends on various factors :-

1. The data rate transfer of the source’s internet connection.
2. The nature of transmission medium.
3. The physical distance between source and destination.
4. The number of nodes between source and destination.
5. The amount of traffic on the LAN(Local Area Network) to which end user is connected.
6. The number of other requests being handled by intermediate nodes and the remote server.
7. The speed with which intermediate node and the remote server function.
8.The presence of Interference in the circuit.
# This program is used to calculate RTT 

import time 
import requests 

# Function to calculate the RTT 
def RTT(url): 

    # time period when the signal is sent 
    t1 = time.time() 

    r = requests.get(url) 

    # time  period when acknowledgement of signal 
    # is received 
    t2 = time.time() 

    # total time taken during this process 
    tim = str(t2-t1) 

    print("Time in seconds :" + tim) 

# Pilot program 
# url address to hit
url = "http://www.google.com"
RTT(url) 

OUTPUT

Time in seconds :0.0579478740692

Here is how you can get median and 95th percentile rtt from regular ping output with datamash:

ping -c 5 1.1.1.1 | sed -rn 's|.*=([0-9]+\.?[0-9]+?) ms|\1|p' | LC_ALL=C datamash median 1 perc 1

This sends 5 echo requests to 1.1.1.1, filters output to only contain rtt with sed, then uses datamash to calculate and output median and 95th percentile (although it can do a lot more, see manual).

If dot . is used as decimal separator in your locale, you can omit LC_ALL=C in command above.