إحتساب تكرار البيانات داخل عمود 'a'
df.groupby('a').count()
print(df.duplicated())
لحذف التكرار
df.drop_duplicates
العودة إلي Pandas-operations