with open('rules_test1Fold0w4_sample00ll1.dat') as fileobj:
lines = list(fileobj)
actualrules=''
for index in sortrule:
print lines[index]
私は .dat ファイルの特定の行を出力するこのコードを持っていますが、私がやりたいのは、各行を配列の要素にすることです。たとえば、私のファイルにこれがあった場合
`'Once upon a time there was a young
chap of the name of Peter he had a
great friend called Claus'`
配列は次のようになります[Once upon a time there was a young,chap of the name of Peter he had a,great friend called Claus]