steveb at nebcoinc.com (Steve) writes: > Hi, > I'm new to python and I'm trying to write a routine to determine > whether or not an object is numeric like so: How about this: try: x = float(s) result = 1 except: result = 0