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