import pandas as pd customer = pd.read_csv('https://query.data.world/s/y9rxL9mGdP6AXPiDaIL4yYm6DsfTV2') customer['Cust_id'] =#Type your code here print(customer.head(10)) code example
Example: read a csv file in pandas
you should be in the same dir as .py file
df = pd.read_csv('your_file_name.csv')