Source code for twin4build.utils.isnumeric

[docs] def isnumeric(x): try: float(x) return True except TypeError: return False