Obtenez l'index pour Value_Counts ()

vl_list = df["X"].value_counts().index
Index(['c', 'b', 'a'], dtype='object')
Chunxiao Wang