Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active October 16, 2021 23:56
Show Gist options
  • Save AI-MOO/f120d545c017c82b1dd836d6e353e145 to your computer and use it in GitHub Desktop.
Save AI-MOO/f120d545c017c82b1dd836d6e353e145 to your computer and use it in GitHub Desktop.
# pandas استيراد مكتبة
import pandas as pd
file_path = 'data/Employees.csv' # csv مسار ملف
data_employees =pd.read_csv(file_path) # سحب البيانات وتخزينها في إطار بيانات
data_employees.head() # التأكد من إطار البيانات الجديد
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment