In python, how do I move an item to a definite index in a list? Thanks in advance for the reply.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the
Alternatively, you can use a slice notation:
If you want to move an item that's already in the list to the specified position, you would have to delete it and insert it at the new position:
|
|||||||||||
|