>> print "a","b" a b 如果我需要一个\t,我放 >>> print "a","\t","b" a b 如何将 , 的输出更改为 \t? 最佳答-6ren">
gpt4 book ai didi

python : comma in print as "\t"

转载 作者:行者123 更新时间:2023-11-28 19:44:59 26 4
gpt4 key购买 nike

打印中的,加了一个空格

>>> print "a","b"
a b

如果我需要一个\t,我放

>>> print "a","\t","b"
a b

如何将 , 的输出更改为 \t

最佳答案

您可以从 __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.

关于 python : comma in print as "\t",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13433059/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com