mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-27 22:59:48 +01:00
7 lines
135 B
Python
7 lines
135 B
Python
def is_float(string: str):
|
|
try:
|
|
float(string)
|
|
return True
|
|
except (ValueError, TypeError):
|
|
return False
|