Python: Convert Pounds to Kilograms
The code has been modified slightly and now uploaded to the site.
The questions are from the C++ Textbook.

24.py
value = float(input("Enter a value in pounds: "));
conversion = value * 0.454;
print(str(value) + " pounds is " + str(conversion) + " kilograms");