从打印输出中删除空间 - Python 3

时间:2013-05-27 08:16:57

标签: python python-3.x

我有这个..

the_tuple = (1,2,3,4,5)
print ('\"',the_tuple[1],'\"')

表示

" 2 "

如何让输出显示"2"

2 个答案:

答案 0 :(得分:8)

使用:

print ('\"',the_tuple[1],'\"', sep='')
                               ^^^^^^

请注意,这些转义是完全没必要的:

print ('"', the_tuple[1], '"', sep='')

甚至更好,使用字符串格式:

print ('"{}"'.format(the_tuple[1]))

答案 1 :(得分:0)

另一个 f 字符串示例,

the_tuple = (1,2,3,4,5)
print(f'"{the_tuple[1]}"')

给予

"2"