1import pandas as pd
2
3url = 'random .csv file link'
4
5df = pd.read_csv(url)
6
7# Pandas is an open source Python package that is most widely used for data science/data analysis and machine learning tasks
1you should be in the same dir as .py file
2
3df = pd.read_csv('your_file_name.csv')