Post

@PythonPr B
str(i) turns the number into a string, and multiplying a string repeats it:
1
22
333
4444
English

@PythonPr Answer: B.
How?
The value of the variable 'i' will be 1, 2, 3,4.
Inside print(), the variable 'i' is converted to a string.
Now, an integer is multiplied by a string; the repetition of the string depends on the value of the integer.
English



















