[Python] タブ区切りの文字列を変数に入れる方法

split() を使ってリスト化

タブで区切られた文字列を分割するためには、split() を使用する。

split()の引数として指定するのは、区切りたい文字。

今回の場合は、タブなので、’\t’を指定。

list変数に格納されるので、a, b, c, … = list変数 で、それぞれの変数に格納できる。

text = 'abc\tdef\tghi\tjkl\tlmn\topq\trst'
str_list = text.split('\t')
a, b, c, d, e, f, g = str_list
print(a,b, c, d, e, f, g)
abc def ghi jkl lmn opq rst