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