python-archieve-projects/M303/3.py

8 lines
146 B
Python

i = 9
while i >= 1:
j = 1
while j <= i:
print("%d*%d=%-2d" % (i, j, i * j), end = " ")
j = j + 1
print()
i = i - 1