Import pandas library

Import the pandas library under the expected alias.
# import pandas here
df = pd.read_csv('/data/companies.csv') print(df.columns)
Python
Setting up Python environment...
Output