2
A
回答
6
您可以從__future__
導入print()
功能和使用sep='\t'
,print()
功能在Python 3引入,它取代在Python 2.x中使用的print
聲明:
In [1]: from __future__ import print_function
In [2]: print('a','b',sep='\t')
a b
幫助上print()
:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout)
Prints the values to a stream, or to sys.stdout by default. Optional keyword arguments: file: a file-like object (stream); defaults to the current sys.stdout. sep: string inserted between values, default a space. end: string appended after the last value, default a newline.
5
使用str.join()
代替:
print '\t'.join(('a', 'b'))
蟒蛇print
聲明將任何元素轉換表達式爲字符串並使用空格加入他們的行列;如果您想使用不同的分隔符,則必須手動進行連接。
或者,使用print()
function,其已被引入到過渡緩解到Python 3:
from __future__ import print_function
print('a','b',sep='\t')
print()
該函數接受sep
參數來改變什麼串用於分隔的值。在python 3中,只有print()
函數保留,並且Python 2中的舊print
語句已被刪除。
1
最簡單的方法
print("%s\t%s",%(a,b))
相關問題
- 1. 蟒蛇 - 用逗號
- 2. 蟒蛇2.7.5+沒有空格打印列表中的逗號
- 3. 打印在蟒蛇
- 4. 奇怪的行爲蟒蛇的打印
- 5. 顯示「打印」從蟒蛇
- 6. 蟒蛇漂亮打印parse_and_eval
- 7. 蟒蛇win32print不打印
- 8. 蟒蛇串無法打印
- 9. 打印列表,如蟒蛇
- 10. 蟒蛇硒打印「日」
- 11. 打印,相較於蟒蛇
- 12. 打印總和爲while循環蟒蛇
- 13. 蟒蛇打印的html文件爲默認打印機
- 14. 蟒蛇編號t/f示例
- 15. 用逗號打印逗號對齊的打印機設備雙打
- 16. 蟒蛇硒 - 打印的XPath值
- 17. 蟒蛇 - 漂亮的打印錯誤欄
- 18. 打印張數最長的序列號列表(蟒蛇)
- 19. 如何避免打印[]中的數組括號?蟒蛇
- 20. 打印後爲什麼使用逗號?
- 21. 如何打印用逗號
- 22. 印刷蟒JSON回蟒蛇
- 23. 蟒紋報表打印一個換行符,儘管逗號
- 24. 部隊蟒蛇打印整個數字
- 25. 蟒蛇自然對數打印錯誤
- 26. 錯誤與打印或如果蟒蛇
- 27. 防止串被打印蟒蛇
- 28. 沒有蟒蛇輸出使用打印
- 29. 我不明白蟒蛇`打印「」「'
- 30. 蟒蛇「幫助」功能:打印文檔