test.txtには、2行の文があります。
The heart was made to be broken.
There is no surprise more magical than the surprise of being loved.
コード内:
import re
file = open('test.txt','r')#specify file to open
data = file.readlines()
file.close()
print "---------------------------------------------------"
count = 0
for line in data:
line_split = re.findall(r'[^ \t\n\r, ]+',line)
count = count + 1
def chunks(line_split, n):
for i in xrange(0, len(line_split), n):
yield line_split[i:i+n]
separate_word = list(chunks(line_split, 8))
for i, word in enumerate(separate_word, 1):
print count, ' '.join(word)
print "---------------------------------------------------"
コードからの結果:
---------------------------------------------------
1 The heart was made to be broken.
---------------------------------------------------
2 There is no surprise more magical than the
2 surprise of being loved.
---------------------------------------------------
最初の行だけに文の数を表示する方法はありますか?
結果を期待する:
---------------------------------------------------
1 The heart was made to be broken.
---------------------------------------------------
2 There is no surprise more magical than the
surprise of being loved.
---------------------------------------------------