I have a CSV file which has 4 columns and I want fetch only 2nd and 3rd columns in a array using but I'm not able to fetch , always got some wrong set of data , Here is my code
import pandas as pd
dataset = pd.read_csv('data.csv')
x = dataset.iloc[:1 , :1].values
can anyone help me how to get them ?