donalundy57671 donalundy57671 04-03-2024 Computers and Technology contestada What is the output of the following code? lst = [3, 1, -1] lst[-1] = lst[-2] print(lst) a) [3, 1, 1] b) [3, 1, -1] c) [3, -1, -1] d) [-1, 1, 3]