

InterviewSolution
Saved Bookmarks
1. |
Design a GUI to convert the distance available in metre into kilometre |
Answer» A=int(input("enter the distance(in meter) "))B=(A/1000)Print("the distance in km is:",B) | |