Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python. Write a function swap_lists that takes in two lists and swap their elements in place . You can not use another list. You can

Python. Write a function swap_lists that takes in two lists and swap their elements in place. You can not use another list. You can not return lists. Input lists have the same size.

def swap_lists(alist1, alist2):

"""Swaps content of two lists.

Does not return anything.

>>> list1 = [1, 2]

>>> list2 = [3, 4]

>>> swap_lists(list1, list2)

>>> print(list1)

[3, 4]

>>> print(list2)

[1, 2]

>>> list1 = [4, 2, 6, 8, 90, 45]

>>> list2 = [30, 41, 65, 43, 4, 17]

>>> swap_lists(list1, list2)

>>> print(list1)

[30, 41, 65, 43, 4, 17]

>>> print(list2)

[4, 2, 6, 8, 90, 45]

"""

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started