颇为阿娇978 发表于 2017-5-8 12:02:50

<=菜鸟级别=>用python写个9*9乘法表

for i in range(1,10):
for n in range(1,i+1):
print i*n
页: [1]
查看完整版本: <=菜鸟级别=>用python写个9*9乘法表