Post

@PythonPr Answer: D
Solution: The python does different things for different kinds of operators.
a is a string, '9'.
b is an int, 4.
In python, string-int multiplication is defined as repepetition of the string, int number of times.
So, '9' * 4 gives 4 repetetions of 9, ie, "9999".
English

