+ 6

Hello, how can I solve this Python problem?

You need to calculate the flight time of an upcoming trip. You are flying from LA to Sydney, covering a distance of 7425 miles, the plane flies at an average speed of 550 miles an hour. Calculate and output the total flight time in hours. Hint The result should be a float. Print ( 7425//550+7425%550) =》 why it's not true ? 😕

29th Jun 2022, 6:01 AM
Zahra
Zahra - avatar
3 Answers
+ 2
But it says the answer should be float, but your output is int 7425 / 550
29th Jun 2022, 6:04 AM
ĐœĐ°Ń€Ń‚ĐžĐœ đŸ˜‘đŸŽ”
ĐœĐ°Ń€Ń‚ĐžĐœ đŸ˜‘đŸŽ” - avatar
+ 2
print(float(2546//66)) if it were java you would prior outright have to declare datatype before referencing. 'String variable'
29th Jun 2022, 7:42 AM
ÏÒŻà«šĆ“dԌ૚ ×
ÏÒŻà«šĆ“dԌ૚ × - avatar
+ 1
ÂĄHola! AquĂ­ estĂĄ la manera de calcular el tiempo de vuelo total en español: 1. Divide la distancia (7425 millas) por la velocidad promedio (550 millas por hora) para obtener el tiempo total en horas: `7425 / 550`. 2. El cociente te darĂĄ el nĂșmero entero de horas. 3. El residuo `%` te darĂĄ la distancia restante que se cubre en una fracciĂłn de hora (minutos). 4. Suma estos dos valores para obtener el tiempo de vuelo total en horas. AquĂ­ tienes el cĂłdigo corregido: ```python tiempo_total = 7425 / 550 + (7425 % 550) / 550 print(tiempo_total) ``` Esto te darĂĄ la salida correcta, incluyendo la fracciĂłn de hora.
6th Jul 2023, 7:03 PM
RaĂșl Luevano P
RaĂșl Luevano P - avatar