Get column from pandas DataFrame

Extract the column with label 'CEO' from the companies DataFrame and assign it to a variable called col.
import pandas as pd df = pd.read_csv('/data/companies.csv') # get 'CEO' column
col =
print(col.head())
Python
Setting up Python environment...
Output