I'm trying to append everything but 'A' from tuple into new_tuple
>>> tuple=('A', 'B', 'C', 'D')
>>> for i in tuple:
new_tuple=()
if i!='A':
new_tuple+=(i,)
>>> new_tuple
('D',)
It only prints ('D',) instead of ('B','C','D')
But it's funny how you can loop through every element and print it....
>>> for i in tuple:
print (i)
A
B
C
D