通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
以下程序的输出结果是( )。
img1 =[12,34,56] img2 = [1,2,3,4] def displ(img): print(img) img1 = img2 img1.append([5,6]) displ(img2)