Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/193b7940d7c31f8f8a89789739736b90 to your computer and use it in GitHub Desktop.
Save computer-tutor/193b7940d7c31f8f8a89789739736b90 to your computer and use it in GitHub Desktop.
print('Miles | Km')
for i in range(1,100,10):
print('{} | {}'.format(i,i*1.609))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment