Q. What will be the output of this code?
Code:
print('5' * 3)
β
Correct Answer: (B)
'555'
Explanation: Multiplying a string by an integer repeats the string.