Parses a string as a float according to the locale settings.
(string, func=float)
| 324 | return _localize(string, grouping, monetary) |
| 325 | |
| 326 | def atof(string, func=float): |
| 327 | "Parses a string as a float according to the locale settings." |
| 328 | return func(delocalize(string)) |
| 329 | |
| 330 | def atoi(string): |
| 331 | "Converts a string to an integer according to the locale settings." |
no test coverage detected
searching dependent graphs…