df.to_csv(r'ex_main_Assets_df_V1.csv', index = False, header=True,encoding='utf8')
df.to_excel(r'Path to store the exported excel file\File Name.xlsx', sheet_name='Your sheet name', index = False)
في بعض الاحيان نحتاج الي تصدير الملف بتكويد ANSI encoding (Windows-1252) بدلاً عن UTF-8 encoding لذالك نستخدم
encoding='cp1252'
العودة إلي مكتبة الباندا pandas library