Answers for "swap places in list python"

-1

how to swap in list in python

list[pos1], list[pos2] = list[pos2], list[pos1]
Posted by: Guest on March-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language