Python write a program that asks the user for a weight in kilograms and converts it to pounds code example
Example: Python write a program that asks the user for a weight in kilograms and converts it to pounds
kg = input("Enter the weight in KG ")
pounds = float(kg) * 2.2
print(pounds)