tiempo_segundos=int(input("Ingrese el tiempo "))

tiempo_minutos=tiempo_segundos/60

tiempo_horas=tiempo_segundos/3600

v_sonido=343/1000

en_segundos=v_sonido*tiempo_segundos
en_minutos=v_sonido*tiempo_minutos
en_horas=v_sonido*tiempo_horas


print(f"El recorrido del objeto es de {en_segundos}km segundos, {en_minutos}km minutos y {en_horas}km en horas ")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: