Post

@PythonPr According to my P3 interpreter your print statement is in the wrong place. It should be indented to include it in the for statement. The result is C)0
English

@PythonPr c, 0. range starts at 0 so the very first multiply is x times 0, and after that nothing brings it back. everyone reads it as 24 and forgets the loop opens on zero
English

@PythonPr 0
Because for i in range start to count with 0 hence 1×0= 0 ×1=0 , 0×2 = 0 until it reach final point
English


























