ssr17

Miles to km

Jul 19th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. mile = input('Enter input: ')
  2. mile = int(mile)
  3. km = mile*1.66
  4. print("{} Mile = {} KM".format(mile,km))
Advertisement
Add Comment
Please, Sign In to add comment