def isFloat()

in python/11-tables-expense.py [0:0]


def isFloat(input):
  try:
    float(input)
  except ValueError:
    return False
  return True