I want someone to input their weight in lbs which is then converted to kg. However the output is just the converted number. I can't figure out how to label the output with "kg". ex: 72 kg
weight_lbs = input('Weight (lbs): ')
weight_kg = int(weight_lbs) * 0.45
kg = 'kg'
print(weight_kg + kg)
question from:https://stackoverflow.com/questions/65650483/need-help-adding-text-after-an-output-in-python