Python的print格式
Posted goldcrop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的print格式相关的知识,希望对你有一定的参考价值。
for i in range(1,10):
for j in range(1,i+1):
print(j,‘*‘,i,‘=‘,i*j,sep=‘‘,end=‘\t‘)
print()
print()
i=1
while(i<10):
j=1
while(j<=i):
print("%d*%d=%d"%(j,i,i*j),end=‘\t‘)
j=j+1
i=i+1
print()
以上是关于Python的print格式的主要内容,如果未能解决你的问题,请参考以下文章