タブ区切りの文字列を含むファイルがあります...
string_one string_two
ファイルを入力として取得し、2 つの文字列の連結を含む各行の末尾に新しいタブ区切りの値を付けて返します。
これまでのところ、私はこれを持っています
#concatenate.py
from sys import argv
scriptname, filename = argv
with open(filename) as f:
for line in f:
#take the first word
#take the second word
#concatenate them and add them to the end of line
私はもう試した
for word in line
各単語を取得しますが、各文字を取得します。各単語を指定 (トークン化) するにはどうすればよいですか