在Python中,可以使用`del`关键字或者使用列表的`remove()`方法来删除数组中的某个元素。1. 使用`del`关键字:```pythonarr = [1, 2, 3, 4, 5]del ...