Spaces:
Sleeping
Sleeping
File size: 192 Bytes
6f9ee50 |
1 2 3 4 5 6 7 8 9 |
# Function to check if the string is a number
def is_number(x):
if type(x) == str:
x = x.replace(',', '')
try:
float(x)
except:
return False
return True |