What is the output of the following code ?
print(128 / 16 / 2, (128 / 16) / 2, 128 / (16 / 2))
Expressions with "/" is getting evaluated from left to right128 / 16 / 2 is evaluated as (128 / 16) / 2
128 / 16 / 2
(128 / 16) / 2
Comment here: