Python vs. PHP duck typing
Having previous experience in writing PHP code could potentially lead you to hours of debugging in Python.
Consider the following simple example in PHP:
PHP
$s = "0";
$my = (bool) $s;
var_dump($s);
var_dump($my)
Flights to outer code
Posts tagged ‘typecast’
Having previous experience in writing PHP code could potentially lead you to hours of debugging in Python.
Consider the following simple example in PHP:
$s = "0";
$my = (bool) $s;
var_dump($s);
var_dump($my)