import pandas as pd

# خواندن داده‌ها از فایل CSV
data = pd.read_csv('financial_data.csv')

# نمایش چند سطر اول داده‌ها
print(data.head())