import numpy as np
from statistics import mode
tempos_resposta = [32, 45, 28, 62, 54, 48, 37, 41, 29,
51,42,33,50,28,52,28,28]
media = np.mean(tempos_resposta)
mediana = np.median(tempos_resposta)
moda = mode(tempos_resposta)
print(f"Média: {media:.2f}","ms")
print("\nMEDIANA: ",mediana,"ms")
print("\nMODA: ",moda,"ms")
To embed this project on your website, copy the following code and paste it into your website's HTML: