for i in range(1,10):
for j in range(1,i+1):
if j==i:
print(str(j) + 'x' + str(i) + '=' + str(i * j), end=('.'))
else:
print(str(j)+'x'+str(i)+'='+str(i*j),end=(','))
print()
一剑丶飘香的博客Introduction 介绍This document gives coding conventions for the Python code comprising the standard library in the main Python distribution. Please see the companion informational PEP describing style...