ashleyblack1978 ashleyblack1978 22-02-2024 Computers and Technology contestada Suppose I have defined an empty list xyz = [ ], which of the following would correctly store 55 in the first element of the list? 1) xyz[0] = 55 2) xyz.append(55) 3) xyz.insert(0, 55) 4) xyz.extend([55])