E3006 Type Errors

cannot-convert-to-float

cannot convert value to float

When this occurs

`float("abc")`

Example error message

error[E3006]: cannot convert "abc" to float: invalid float format

How to fix

The value cannot be converted to a float. Check the source value type.

Related errors