fork download
  1. from random import randint
  2.  
  3. lista = 10
  4. X = [-1,-2,-3,-4,-5]
  5. R = []
  6.  
  7. def gravarLista(X):
  8.  
  9. for i in X:
  10. if i < 0:
  11. R.append(i)
  12. print(R)
  13.  
  14. for j in R:
  15. if j in X:
  16. X.pop(X.index(j))
  17. print(X)
  18.  
  19.  
  20. gravarLista(X)# your code goes here
Success #stdin #stdout 0.02s 11576KB
stdin
Standard input is empty
stdout
[-1, -2, -3, -4, -5]
[]