fork download
  1. def account_finder(value):
  2. try:
  3. return float(value)
  4. except ValueError:
  5. return value
  6.  
  7. for item_finder in ['1.234', '', 'nope', '12', '1.23e456']:
  8. print('%s -> %r' % (item_finder, account_finder(item_finder)))
Success #stdin #stdout 0.02s 9128KB
stdin
Standard input is empty
stdout
1.234 -> 1.234
 -> ''
nope -> 'nope'
12 -> 12.0
1.23e456 -> inf