I want to convert an entered lb weight to kg and I get the following error...
TypeError: unsupported operand type(s) for /: \'unicode\' and \'float\'<
raw_input returns a string, you should convert the input to float using float():
raw_input
float()
float(raw_input("Current Weight (lb): "))