Computer Science, asked by SaanviPradeepGupta, 1 month ago

can anyone tell how to convert km in metre, centimetre and millimetre In python?​

Answers

Answered by hypernovicgamer
0

Answer:

Explanation:

a = float(input("Enter km"))

m==a*1000

cm==m*100

mm==cm*10

print(a," kilometre = ",m," metres, ",cm," centimetres, and ",mm," millimetres)

Similar questions