In the Python documentation and on mailing lists I see that values are sometimes "cast", and sometimes "coerced". What is the difference?
|
|
|
I think "casting" shouldn't be used for Python; there are only type conversion, but no casts (in the C sense). A type conversion is done e.g. through |
|||
|
|
|
Cast is explicit. Coerce is implicit. In C++:
The examples in Python would be:
While the python docs tend to use the word convert for the first example they definitely reserve coerce for the second example as seen in PEP 208 Reworking the Coercion Model |
|||||||||
|