Had two answers and some comments, mentioned another question, but all had not provided REASON, why Python did this changes? such as '/b' is '/x08' is just the result, but why? Cheers.
I try to add this path"F:\big data\Python_coding\diveintopython-5.4\py" into sys.path, therefore, the code under it could be imported directly.
after using : sys.path.append('F:\big data\Python_coding\diveintopython-5.4\py')
I found I had this path inside sys.path: 'F:\x08ig data\Python_coding\diveintopython-5.4\py'
I then tested using the following code:mypath1='F:\big data\bython_coding\aiveintopython-5.4\ry'
the mypath1 now is : 'F:\x08ig data\x08ython_coding\x07iveintopython-5.4\ry'
all the '\b' changed into '\x08' and '\a' changed into '\x07'
I searched for a while, but still can not find the reason, could you please check it out and any feedback or help will be appropriated. Many thanks.