Posts by Carlos Eduardo • 21 points
1 post
-
2
votes3
answers713
viewsA: Combination of two lists in Python
Hi there, Thais. I made some changes to your code and I think it worked. Code: def senhaspossiveis(lpossiveis, dpossiveis): senhas = [] for l in lpossiveis: for d in dpossiveis: senhas.append(l +…