I would like to get a list a=['wA', 'xB', 'yC', 'zD'], what argument to provide in commented section?
i=None
j=None
a=[]
for i in "wxyz":
for j in "ABCD":
while i!=j: # <-- here
break
a.append(i+j)
Thanks!