This question has an incorrect answer it should be 210 is correct.
No, 42 is correct.
cool_number
was 42
and
cool_number * 5
does not change cool_number
If you wanted to change cool_number
(so that its new value is 5 times its previous value), you would do:
cool_number = cool_number * 5
or
cool_number *= 5
3 Likes