From b008844bc516ac581eec0051b229b811dc90e304 Mon Sep 17 00:00:00 2001 From: Barbara Ericson Date: Tue, 31 Dec 2024 14:43:35 -0500 Subject: [PATCH] Fixed wording on answers --- _sources/lists/listAsArgument.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_sources/lists/listAsArgument.rst b/_sources/lists/listAsArgument.rst index 1f4f8069..1af4f2df 100644 --- a/_sources/lists/listAsArgument.rst +++ b/_sources/lists/listAsArgument.rst @@ -83,13 +83,13 @@ The slice operator creates a new list and the assignment makes ``t`` refer to it, but none of that has any effect on the list that was passed as an argument. -.. mchoice:: listArg_MC_slice_v2 +.. mchoice:: listArg_MC_slice_v3 :practice: T :answer_a: True :answer_b: False :correct: a - :feedback_a: The slice operator creates a new list called "lst", but that will not affect the list it was passed. - :feedback_b: The slice operator creates a new list called "lst", so it will not modify the original list. + :feedback_a: The slice operator creates a new list, "lst" refers to that new list, the original list is not changed. + :feedback_b: The slice operator creates a new list, "lst" refers to that new list, the original list is not changed. True or False. The following code block will **not** remove the first element from the list argument.