put a r before a string tells that the string is a raw string without escape
" abc\tcde" # abc cde
r" abc\tcde" # abc\tcde