0

When passing the input

A = 'hello'
B = 'by'
sum = A + '\\' + B

I get

'hello\\bye'

I WOULD like to get

'hello\bye'

What do I have to change?

pawel_winzig
  • 902
  • 9
  • 28
  • 5
    Try doing `print sum` and see what you get. I'm guessing you are using the interpreter to look at the value of `sum`, which will show you the quotes and the escaped backslash. – SethMMorton Feb 20 '15 at 18:16
  • 1
    @AnttiHaapala But the OP explicitly said they did *not* want that... – SethMMorton Feb 20 '15 at 18:18

0 Answers0