The read_csv function in the Pandas library is used to read data files in CSV (Comma-Separated Values) format. This function loads the data into a DataFrame object and provides various methods to manipulate and analyze the data.
import pandas as pd
df = pd.read_csv('data.csv')
print(df)