News

The Python star pattern challenge is a popular task often assigned to new programming students. To complete the challenge, developers must demonstrate competency with variables, ranges and nested ...
FOR x ← 1 TO 10 FOR y ← 1 TO 10 result ← y * x OUTPUT y + " * " + x + " = " + result ENDFOR ENDFOR For every iteration of x, y is iterated ten times. Nested iteration isn't limited to FOR loops.