Once I assign an indentation to a variable, how can I print that specific thing that I assigned ? For example, this prints whitespace
delim = "\t"
print(delim)
whereas I would like to print out \t
. I do not want to assign delim to be "\\t"
Once I assign an indentation to a variable, how can I print that specific thing that I assigned ? For example, this prints whitespace
delim = "\t"
print(delim)
whereas I would like to print out \t
. I do not want to assign delim to be "\\t"