标签: python python-2.7 backslash
传递输入时
A = 'hello' B = 'by' sum = A + '\\' + B
我得到了
'hello\\bye'
我想得到
'hello\bye'
我需要改变什么?