Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active February 5, 2022 22:22
Show Gist options
  • Save AI-MOO/c26a96d311fdaf6b4af62f5e1d08e4a6 to your computer and use it in GitHub Desktop.
Save AI-MOO/c26a96d311fdaf6b4af62f5e1d08e4a6 to your computer and use it in GitHub Desktop.
# استبدال الصيغة الرقمية لأيام الأسبوع إلى صيغة كتابية
data["Weekday"] = data["Weekday"].replace([0, 1, 2, 3, 4, 5, 6], ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"])
data.sample(7)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment