テキストファイルを、必要な文章に分割して、カンマで分割することに成功しました。テキストファイル、whit space pronlemを分割する
テキストファイル:
You will find love in the next week, You will die in the next minute, You will get married and have 7 kids, You will end up in prison
コード:私はプログラムを実行するときが、その後4本の白い線のような期待のよう
from random import sample
Future = open('Future.txt', 'r')
for line in Future:
Truth = line.split(",")
field1 = Truth[0]
print (field1)
は、しかし、私は、テキストファイルの最初の行を取得します。 希望する香りの後に白線が浮かないようにするにはどうすればよいですか?
を私は何かが足りないのですか?テキストファイルは1行だけですか? –
'真実 'を印刷しようとすると、すべての文がリストに表示されます。あなたが私に尋ねるならば、テキストファイルは空白でない行を1つだけ含んでいます。 –
出力を表示できますか? –