Answers for "read tsv file column"

3

read tsv file column

#for example you have 4 column age,gender,name,adress 
#if you want to gender you should give "line[1]" for arraylist
with open("train.tsv",encoding='utf8') as tsvfile:
    tsvreader = csv.reader(tsvfile, delimiter="\t")
    for line in tsvreader:
        print(line[1])
Posted by: Guest on December-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language