Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cdactvm
/
Tamil_ASR_Demo
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
8811fa1
Tamil_ASR_Demo
/
isNumber.py
cdactvm
Update isNumber.py
6f9ee50
verified
3 months ago
raw
Copy download link
history
blame
Safe
192 Bytes
# 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