我有这个..
the_tuple = (1,2,3,4,5)
print ('\"',the_tuple[1],'\"')
表示
" 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"