Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active October 17, 2021 01:20
Show Gist options
  • Save AI-MOO/48862573e973444310d2ec3afb09ea79 to your computer and use it in GitHub Desktop.
Save AI-MOO/48862573e973444310d2ec3afb09ea79 to your computer and use it in GitHub Desktop.
# إلى عدم استخدام الصف الأول كـ أسماء للأعمدة header يشير المعامل
data = pd.read_csv(filepath, header=None)
# names يتم وضع أسماء مخصصة للأعمدة من خلال المعامل
data = pd.read_csv(filepath, names=['Names', 'Age', 'Job'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment