def poundsToMetric(pounds):
kilograms = pounds / 2.2
grams = kilograms * 1000
return int(kilograms), grams % 1000
pounds = float(input("How many Pounds? "))
kg, g = poundsToMetric(pounds)
print('The amount of pounds you entered is {}. '\
'This is {} kilograms and {} grams.'.format(pounds, kg, g))
this program works but I am wondering how do I get the kilograms to be only even with decimal points so instead of 65 pounds being like 545.4544545454 grams I need it to be 545 grams