# create list and enter header values header_list = ["Val1", "Val2", "Val3"] # create a dataframe ex: df and tell pandas to read in your csv # in same line assign your list to the names= df = pd.read_csv("sample_file.csv", names=header_list)