3 lines
125 B
Python
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)))
|