Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the Python documentation and on mailing lists I see that values are sometimes "cast", and sometimes "coerced". What is the difference?

share|improve this question

2 Answers

up vote 14 down vote accepted

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 int(o) where the object o is converted into an integer (actually, an integer object is constructed out of o). Coercion happens in the case of binary operations: if you do x+y, and x and y have different types, they are coerced into a single type before performing the operation. In 2.x, a special method __coerce__ allows object to control their coercion.

share|improve this answer

Cast is explicit. Coerce is implicit.

In C++:

 2.0 + static_cast<double>(1)  //cast
 1.0 + 2 //coerce

The examples in Python would be:

2.0 + float(1) 
1.0 + 2  //coerce 

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

share|improve this answer
1  
-1. That's C++ nomenclature; Python uses different terminology. – SamB Jul 11 '10 at 0:39
9  
+1: For this question, the example is perfectly valid. And it's clearly marked as C++. – user183037 May 7 '11 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.