Sample = ['A$$N','BBBC','$$AA']
我需要将每个元素与列表中的每个其他元素进行比较。所以比较sample[0]
and sample[1]
, sample[0]
, and sample[2]
, sample[1]
and sample[2]
。
如果比较中的任何对具有$
,则$
,并且需要消除相应的元素。
例如在:
sample[0] and sample[1] Output1 : ['AN','BC']
sample[0] and sample[2] Output2 : ['N', 'A']
sample[1] and sample[2] Output3 : ['BC','AA']
for i in range(len(sample1)):
for j in range(i + 1, len(sample1)):
if i == "$" or j == "$":
#Need to remove "$" and the corresponding element in the other list
#Print the pairs