I recently noticed that the symbol \ behaves differently in a python string than other characters.
For example: print('ab' + '\cde')
prints ab\cde
as expected, but print('a'+'\bcde')
only prints cde
.
I was wondering what the reason for this was. I am currently using python 11, so it may be a glitch with the new version? Only thing I can think of so far.