im trying to create a multiple values calculator in Python, using While, For/In sentences with lists
numbers = []
out = 0
while out == 0:
    numbers.append(int(input('Add a number: ')))
    out2 = input('''[0]To keep adding numbers
[1]To add and leave: ''')
    if out2 == 1:
        out == 1
#In theory if out == 1 the while loop should end and go to:
for add in numbers:
    add = numbers
print(add)
I tried using While Not sentence, but i get an obvius mistake. I suppose this is a pretty dumb error of comprehention i have, but i can't really get what am i doing wrong. I'll be very glad if u help me with this.
 
     
    