Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Is String a Number? (Part II) by kazuki.h
def is_number(val):
try:
float(val.replace("e", "a"))
return True
except ValueError: return False
May 11, 2023
Comments: