is_str_float¶
- pyrcs.utils.is_str_float(x)[source]¶
Checks and returns whether a string represents a float value.
- Parameters:
x (str) – String-type data.
- Returns:
Whether the string-type data represents a float value.
- Return type:
bool
Examples:
>>> from pyrcs.utils import is_str_float >>> is_str_float('') False >>> is_str_float('a') False >>> is_str_float('1') True >>> is_str_float('1.1') True