Kilograms to Pounds Python Program

By | July 23, 2019

Kilograms to Pounds Python Program – This is a Python program to enter Kilograms by the user, and the program will convert it into pounds and show the result.

How to Convert Kilograms into Pounds (Kgs to Lbs)

We can easily convert the given kilograms in to the pounds using the following formula:
1 Kg = 2.2046 Pounds

Python Program  Kilograms to Pounds  Conversion  With Video Tutorial

Easy Video Tutorial For Writing and Executing This Python Program

The Source code of Kilograms to Pounds Python Program

# Write a program that asks the user
# to enter a weight in kilograms.
# The program should convert it to pounds.
# using the formula
# 1 kg = 2.2046 pounds
# Author: www.EasyCodeBook.com (c)

kilo_grams = float(input('Enter weight in Kg to Convert into pounds:'))
pounds = kilo_grams * 2.2046
print(kilo_grams,' Kilograms =', pounds,' Pounds')

The output of this Python program is as follows:

Enter weight in Kg to Convert into pounds:10
10.0 Kilograms = 22.046 Pounds

Python Pounds to Kilograms Conversion Program

Loading

4 thoughts on “Kilograms to Pounds Python Program

  1. Pingback: Python Pounds to Kilograms Conversion Program | EasyCodeBook.com

  2. Deidra Rahl

    Hello my loved one! I wish to say that this post is awesome, great written and include almost all important infos. I would like to peer extra posts like this .

    Reply
  3. Pingback: Python 3 tkinter GUI Kilogram to Pounds Program | EasyCodeBook.com

Leave a Reply

Your email address will not be published. Required fields are marked *