python/2024.7.1.py

7 lines
123 B
Python

for i in range(1 , 10):
for j in range(1,i +1):
print('{}X{}={}'.format(i , j , i*j),end=' ')
print(' ')