Write a program to input value in tons and convert it into quintals and kgs.
Answers
Answered by
0
Answer:
need to create a python function named poundsToMetric which converts weights given in pounds to kilograms and grams.
for example rather than print out 2.2 kilograms the correct answer would be 2 kilograms and 200 grams
to aid your work the following conversions
hold:
1 pound = 2.2 kilograms 1ki * log r * a * m = 1000
grams
your program should prompt the user for the number of pounds and output the results in kilograms and grams.
Similar questions