open_in_new
content_copy
def isfloat(value): try: float(value) return True except ValueError: return False