Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 09:30
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/5668c6f530116212e9fa70ecae411b1b to your computer and use it in GitHub Desktop.
Save computer-tutor/5668c6f530116212e9fa70ecae411b1b to your computer and use it in GitHub Desktop.
def kgtotonne(Kg):
return Kg*0.001
def tonnetoKg(tonne):
return tonne**1000
def kgtopound(Kg):
return Kg*2.20462
def poundtokg(pound):
return pound*0.453592
#Constants
KG= '0.0001 TONNES'
POUND = '0.453952 KGS'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment