fork download
  1. # your code goes here
  2.  
  3. import numpy as np
  4. lista = np.array([1,2,3,4,5,6])
  5. lista = np.delete(lista,0)
  6. print(lista)
  7.  
  8. lista = np.array([1,2,3,4,5,6])
  9. lista = np.delete(lista,[0,1,3])
  10. print(lista)
Success #stdin #stdout 0.07s 92672KB
stdin
Standard input is empty
stdout
[2 3 4 5 6]
[3 5 6]