编辑代码
Python代码
3.11.0
2.7.17
运行
list3
=
[1,2]
list3
.append(
3
)
print
(list
3
)
#list3.append(4,5)
list3
.append([
4
,
5
])
print
(list
3
)