0
problem with simple measurement #python
I have that code: d=float(input('Distance: ')) t=float(input('Time: ')) s=d/t print('Speed:', s) How can i add units(m/s) in the output? Ex: Distance: 50 Time: 2 Speed: 25 m/s
1 Resposta
0
prin('Speed:', s, 'm//s')