Question: What does this code print (unless it produces an error)? my_list = [1, 2, 3, 4] your_list = my_list my_list.append(5) print(your_list) O [1, 2,
What does this code print (unless it produces an error)? my_list = [1, 2, 3, 4] your_list = my_list my_list.append(5) print(your_list) O [1, 2, 3, 4] O [1, 2, 3, 4, 5] O 1, 2, 3, 4, 5 O Error: 'list' object does not support item assignment
Step by Step Solution
3.38 Rating (148 Votes )
There are 3 Steps involved in it
The code provided in the image is as follows python mylist 1 2 3 4 y... View full answer
Get step-by-step solutions from verified subject matter experts
