Post

@PythonPr 3 option B as [3,4] is a single element added to the original one
English

@PythonPr B.
Since the list [3, 4] is appended as a third element to x, thus x becomes [1, 2, [3, 4]].
English

@PythonPr B. The list [3,4] is appended to x as a 3rd element, so 3
English

@PythonPr B.
Justification: the list is appended to x’s list, creating a list within a list
English

@PythonPr 3, I think. Unless I confuse append with extend again. The last element would be a list within a list.
English























