Getting Started
API Reference
Developer Reference
[docs] def isnumeric(x): try: float(x) return True except TypeError: return False