Load CSV file
Load the companies dataset using the provided path and the
read_csv
function.import pandas as pd
path = '/data/companies.csv'
# load dataset using path and read_csv
df =
print(df.columns)
Python
Setting up Python environment...
Output