Posts by Rodrigo Alexandre Ribeiro • 11 points
1 post
-
0
votes1
answer38
viewsQ: I have a question about how I can add each item of 2 lists and play the results of the sum to a third in python
I have the following program #Faça um programa que percorra duas listas e gere uma terceira sem elementos repetidos. x = [] y = [] z = [] while True: n = int(input("digite um número(0 sai): ")) if n…