Categories
Is it possible to output all elements of an array after a certain element?
For example, there is an array x = ["a", "b", "c", "d", "e"]. Is it possible to express all elements after a?
Answer the question
In order to leave comments, you need to log in
read a book about python
x = ["a", "b", "c", "d", "e"] x1 = x[1:]
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question