Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
cdactvm
/
Hindi_ASR
like
0
Running
App
Files
Files
Community
ed68cbd
Hindi_ASR
/
isNumber.py
cdactvm
Upload 5 files
45f9ca7
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
260 Bytes
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
# 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