read_csv hanya kolom tertentu

col_list = ["Name", "Department"]
df = pd.read_csv("sample_file.csv", usecols=col_list)
Adhun Thalekkara