I am trying to print a statement in python and getting gaps and missing letters, this only happens when I use "". I was trying to enter the path.
image
check the image
I am using vs code, anaconda, Jupiter notebook
>Solution :
The \t in your string is an escape character which translates to a tab. In order to ignore the escape characters you can use raw strings by placing an r before the string. Examples:
print("aa\tbb")
aa bb
With raw strings:
print(r"aa\tbb")
aa\tbb