Python program to convert kilograms to grams
Following program shows you how to convert kilograms to grams.
In this program we get kilograms from user, once we get those we need to multiply with 1000 so that we get in grams
kilograms = float(input("Please enter kilograms:"))
grams = kilograms * 1000
print(grams, " Grams")
Output:
Please enter kilograms: 2
2000.0 Grams