Seudónimo Seudónimo 02-12-2020 Computers and Technology contestada Question # 3DropdownFinish the code for this bubble sort.length = len(myList) for n in range(length - 1): for test in range(n + 1, length): if myList[n] _____ myList[test]: temp = myList[n] myList[n] = myList [test] myList[test] = tempprint(myList)