1. 程式人生 > >Python 讓兩個print()函數的輸出打印在一行內

Python 讓兩個print()函數的輸出打印在一行內

nbsp end http 輸出結果 空白 技術 div 定義 off

1.兩個連續的print()函數為什麽在輸出時內容會分行顯示?

解:print()中有兩個默認參數 sep 和 end,其中sep是代替分隔符,end是代替末尾的換行符,默認使用‘,’代替空格,且默認末尾加上換行符,end函數用來定義一行輸出的末尾。

1 coffee_cup = coffee  
2 print("I love my", coffee_cup, "!",sep="*")  
3 """ 
4 輸出結果是: 
5 I love my*coffee*! 
6 """

2.如何讓兩個print()函數打印在一行內

解:可以利用end參數,將默認的換行符改為空格或是空白即可

1 print(hello, end = " ")  
2 print(world, end = "*")  
3 print(!)  
4 """ 
5 輸出結果是: 
6 hello world*! 
7 """ 

3.示例:打印9*9 乘法表:

#輸出 9*9 乘法口訣表。

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

技術分享圖片

Python 讓兩個print()函數的輸出打印在一行內