Problem Statement - B03D-2019S-C1
Write a python method/function Swapper(Numbers) to swap the first half of the content of a list Numbers with second half of the content Numbers and display the swapped values.
Note: Assuming that the list has even number of values in it.
For example: if the list Numbers contains
[35, 67, 89, 23, 12, 45]
After swapping the list content should be displayed as
[23, 12, 45, 35, 67, 89]
Solution
CSKC| Created: 11-Apr-2019 | Updated: 11-Apr-2019|CBSE12A-2019