import pandas as pd d = [ ["Mark", 12, 95], ["Jay", 11, 88], ["Jack", 14, 90]] df = pd.DataFrame(d, columns = ['Name','Age','Percent']) print(df)