Answers for "Python write a program that asks the user for a weight in kilograms and converts it to pounds"

0

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)
Posted by: Guest on February-26-2021

Code answers related to "Python write a program that asks the user for a weight in kilograms and converts it to pounds"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language