如何在Python中列印同一行多個元素
Python中可以透過修改實現在同一行列印多個元素print()函數的結束參數。
Python 3解
在Python 3中,print()函數的結束參數採用預設值「n」(換行)。將此參數修改為空字串可防止在行尾插入新行。
def install_xxx(): print("Installing XXX... ", end="", flush=True) install_xxx() print("[DONE]")
Python 2 解
在Python 2 中,放置print() 行末尾的逗號會禁止插入新行(請注意,在print( ) 行末尾會出現一個額外的空格
def install_xxx(): print "Installing XXX... ", install_xxx() print "[DONE]"
透過調整Python中的結束參數或在 Python 2 中使用逗號,您可以有效地在腳本中的同一行上列印多個元素,從而允許您以所需的格式建立輸出。
以上是如何在Python中的同一行列印多個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!