用python實現九九乘法表

天天進步一點點
學到了print 居然還有end功能。html

i = 0
while (i < 10):
j = 1
print()
while (j <= i):
print(str(i) + " x " + str(j) + " = ", i * j, end="\t")
j+=1
i+=1python

https://docs.python.org/3.3/library/functions.html#print
參考一下文檔,end的功能,打印功能默認以新一行既回車結尾,用end 功能能夠改變這個behavioride

相關文章
相關標籤/搜索