I have 2 blocks of code,
test.php -->
$a = 90;
$b = 87;
$c = $a AND $b;
print_r($c);
----------------------
OUTPUT -->
----------------------
90
test.py -->
a = 90
b = 87
c= a and b
print(c)
----------------------
OUTPUT -->
----------------------
87
Now, As I understand both PHP and python when executing the code, interpret the code down to C to machine level (which is the parent language of both)
Then why are they both behaving differently?
What am I doing wrong here?
Thank you for your suggestion.