Log in or register to post comments Expected Output: Code: rows = 7 for i in range(0, rows): for j in range(0, i + 1): print(i * j, end=’ ‘) print() Tags Python Control Flow Interview Questions Python Interview Questions