Post

@PythonPr Option B : 1010
a is a string, not a number. In Python, multiplying a string by an integer repeats the string. So "10" * 2 becomes "1010". The print statement outputs 1010, not 20, because no numeric multiplication occurs here.
English

