Write a function to convert weight from kgs to pounds
Topic: Write a function to convert weight from kgs to pounds
Solution
def kgs_to_pounds(weight_kg): return weight_kg * 2.2
List all Python Programs
Solution
def kgs_to_pounds(weight_kg): return weight_kg * 2.2