Remove Last Element from Array using Python October 6, 2020 Python 0 Comments 536 Views pop method data = [10, 3, 17, 50, 15] data.pop() print(data)
Leave a Comment
Cancel reply