from time import *
def fvelocidade(tempo_s,tempo_e,entrada):
tempo_delay = tempo_e - tempo_s
tempo_r = round(tempo_delay,2)
velocidade = len(entrada)/tempo_r
return round(velocidade)
tempo_1 = time()
teste_entrada = input("Entrada: ")
tempo_2 = time()
print(f'Velocidade: {fvelocidade(tempo_1,tempo_2,teste_entrada)} w/sec')