2011-03-08 23 views
2

これは簡単ですが、ファイルに巨大な段落を書きたいと思います。私は私ができることを知っているファイルに段落を書く

f=open("blah.txt",'w') 
f.write("blah blah \n") 
f.write("bla blah blah ") 
f.close() 

しかし、もう少し洗練された解決策は何ですか?

答えて

3

このように3つの引用文字列宣言を使用できます。

>>> a = '''blah blah blah blah 
blah blah blah blah 
blah blah blah blah''' 
>>> print(a) 
blah blah blah blah 
blah blah blah blah 
blah blah blah blah 
15
f.write("""I’ve got a lovely bunch of coconuts 
There they are all standing in a row 
Big ones, small ones, some as big as your head 
Give them a twist a flick of the wrist 
That’s what the showman said""") 
+3

+1素晴らしいテキスト – amccormack