Simple syntax for bringing a list element to the front in python? January 27, 2023 by Tarik I would go with: mylist.insert(0, mylist.pop(mylist.index(targetvalue)))