python-by-example-150-chall.../challenges1-11/challenage-010.py
2019-07-17 09:56:46 +03:00

3 lines
125 B
Python

weight = float(input('Enter weight to convert it to pounds : '))
print('{0} kg = {1} pounds'.format(weight, (weight*2.204)))