Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 09:30
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