so I list mList = ['list1', 'list2', 'list8', 'list99']
I want to choose a value in that list say 'list8' and have it so that it is the first entry in the list ['list2', 'list1', 'list8', 'list99']
how do I reorder just this one entry all I can think of at the moment is -get the index -remove that entry -insert(0, entry)
what is a clean way to do this?
cheers..