بسم الله الرحمن الرحيم

باندا - التعامل مع الملفات

تاريخ النشر : Oct. 26, 2020

الملفات


تصدير data frame الي ملف CSV
df.to_csv(r'ex_main_Assets_df_V1.csv', index = False, header=True,encoding='utf8')
تصدير data frame الي ملف أكسيل
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