编辑代码
Python代码
3.11.0
2.7.17
运行
students=[
'小明'
,
'小红'
,
'小刚'
] students.
append
(
'小美'
)
print
(students) del students[
1
]
print
(students)