Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

let's say I have a file. I want to write "hello" TAB "alex"

share|improve this question
tab implies '\t' – Pratik Dec 20 '10 at 10:58

3 Answers

up vote 13 down vote accepted

this is the code:

f = open(filename, 'w')
f.write("hello\talex")

The \t inside the string is the escape sequence for the horizontal tabulation.

share|improve this answer
1  
You should explain the \t is the tab. – ChrisF Dec 20 '10 at 12:51

You can use \t in a string literal:

"hello\talex"

share|improve this answer

it's usually \t in command line interfaces, which will convert the char \t into the whitespace tab character.

e.g. hello\talex -> hello--->alex

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.