Using Python Programming Lab 6 Loopy Lab The information for
Using Python Programming- Lab 6 \"Loopy Lab\"
The information for this lab is on the site posted below. If anyone could help me that would be greatly appreciated.
http://programarcadegames.com/index.php?chapter=lab_loopy_lab&lang=en
Solution
num = 10
for i in range(1, 10):
for j in range(1, i + 1):
print num,
num = num + 1
print \'\'
