Question: How do I code this in Python? list2 , and list3 . Each of these 3 lists should contain the elements (5, Your task for
How do I code this in Python?

list2 , and list3 . Each of these 3 lists should contain the elements (5, Your task for this code challenge is to define 3 variables, list1 6, 7, 8, 9, 10] . Define these 3 lists such that: list2 and list3 contain references that point to the same object list1 contains a reference that points to a separate (different) object Hint: Reread step 3. Do not worry about the sample input and output, this is just how we're testing your code. Our sample input is empty and sample output is True because we are only testing whether you have defined list1 , list2 , and list3 correctly and if yes, our test will print out True . Otherwise we will print some error message. Sample Input: Sample Output: True Correct answer from 310 learners Total 73% of tries are correct Write a program, test using stdin stdout Time limit: 15 seconds Memory limit: 256 MB 1 # Define listi, list2, and list3 below such that list2 and list3 contain references that point to the same object 2 # and list1 contains a reference that pointers to another object
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
