Learn practical skills, build real-world projects, and advance your career
import pandas as pd 
Sub1 = pd.read_csv("/content/sub_1.csv")
Sub1.head()
Sub1['label'].head()
0    0
1    0
2    0
3    0
4    0
Name: label, dtype: int64
Sub1['label'].tail()
223195    2
223196    2
223197    2
223198    2
223199    2
Name: label, dtype: int64