# Create datafrae from student list but skip column 'Age' i.e. only with 2 columns dfObj = pd.DataFrame.from_records(students, exclude=['Age'], columns = ['Name' , 'Age', 'City'], index=['a', 'b', 'c'])