First solution in Clear category for Is String a Number? by eugene100372
def is_number(val: str) -> bool: return val.isdigit()
Dec. 27, 2022