Answered step by step
Verified Expert Solution
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started