submission diff with the run result in python, can anyone help?
'''
def isNumber(self, s):
tmp = re.fullmatch('([0-9]+)((.)([0-9]+))?((e)([0-9]+))?' , s)
if tmp == None:
return False;
else:
return True;
"""
:type s: str
:rtype: bool
""''
'''