Let's say I have a file. How do I write "hello" TAB "alex"?
ベストアンサー1
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.
Let's say I have a file. How do I write "hello" TAB "alex"?
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.