Possible Duplicate:
Python: Split string with multiple delimiters
Convert django Charfield “\t” to tab
I have written a python code in Eclipse which takes delimiters as an argument. When I do
print "Hello",delimiter, "All".
This generates --> Hello \t All
, whereas if I overwrite the delimiter with delimiter = '\t'
within the code, I get the right output Hello All. I wonder what is the difference? I hope this not just the eclipse thing.