[Tutor] Newbie - Format question

alan.gauld@bt.com alan.gauld@bt.com
Thu, 6 Dec 2001 14:36:12 -0000


> >>>i = 1
> >>>while (i <= 3):
> j = 1
> while (j <= i):
>   print i * j,
>   j = j + 1
  print        # force a new line after each inner loop
> i = i + 1

should fix it.

Alan g