Posts by Marcos Vinicius • 81 points
1 post
-
8
votes4
answers392
viewsQ: Program that returns the unusual numbers of two lists (python)
I’m trying to make a program, in Python, that returns a list with the unusual elements between two other lists. I made the following code: def indice(a,b): ind = [] for i in range (len(a)): for w in…