Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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="	")
    for line in tsvreader:
        print(line[1])
Comment

PREVIOUS NEXT
Code Example
Python :: conda specify multiple channels 
Python :: pandas read_csv multiple separator 
Python :: pyqt display math 
Python :: How to find the three largest values of an array efficiently, in Python? 
Python :: decode base64 with python 
Python :: append to csv python 
Python :: add static file in django 
Python :: schedule asyncio python 
Python :: plt.figure resize 
Python :: python get everything between two characters 
Python :: how to find columns of a dataframe 
Python :: python get object attribute by string 
Python :: unpack tuple python 
Python :: read binary file python 
Python :: pygame window 
Python :: convert list to binary python 
Python :: download a file from kaggle notebook 
Python :: how to get width of an object in pyqt5 
Python :: python tkinter go to another window on button click 
Python :: pyaudio install error ubuntu 
Python :: ses mail name 
Python :: how to import random module in python 
Python :: sns legend outside 
Python :: django queryset get all distinct 
Python :: roll longitude about zero 
Python :: dataframe delete row 
Python :: python stop daemon thread 
Python :: python remove all except numbers 
Python :: createview 
Python :: indices of true boolean array pyton 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =