Catarina Almeida Posted February 27, 2017 at 12:48 PM Report Share #602767 Posted February 27, 2017 at 12:48 PM Olá Eu estou a tentar fazer um programa onde tenho duas listas, l1 e l2, e queria fazer uma nova lista, result (que é uma copia da lista l1), que contem os elementos de l1 que não estão em l2. O código que fiz está a dar o output pretendido, mas quando as duas listas, l1 e l2, são iguais não dá. Alguém podia me ajudar? Obrigada l1 = [1,2,3] l2 = [5,2,4] result = l1 i = 0 while i <= len(l1): if i in l2: result.remove(i) i += 1 print result Link to comment Share on other sites More sharing options...
Solution tejano96 Posted February 27, 2017 at 03:49 PM Solution Report Share #602773 Posted February 27, 2017 at 03:49 PM (edited) Boas, Experimenta este código e podes ver se serve. l1 = [10,21,32,5] l2 = [21,10,32] result = l1 i = 0 for i in l1[:]: if i in l2: result.remove(i) print(result) Podes ver este link para perceberes um pouco melhor a razão de colocar o [:]. http://www.python-course.eu/for_loop.php tejano96 Edited February 27, 2017 at 03:49 PM by tejano96 Link to comment Share on other sites More sharing options...
Catarina Almeida Posted February 27, 2017 at 04:21 PM Author Report Share #602775 Posted February 27, 2017 at 04:21 PM Obrigada, já está a dar certo.🙂 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now