sample = ['AAAA','ABCB','CCCC','DDEF']
Run Code Online (Sandbox Code Playgroud)
我需要消除元素中每个字符与其自身相同的所有元素,例如.AAAAA,CCCCC
output = ['ABCB','DDEF']
sample1 =[]
for i in sample:
for j in i:
if j == j+1: #This needs to be corrected to if all elements in i identical to each other i.e. if all "j's" are the same
sample1.pop(i)
Run Code Online (Sandbox Code Playgroud)
打印样本
sample = ['AAAA','ABCB','CCCC','DDEF']
output = [sublist for sublist in sample if len(set(sublist)) > 1]
Run Code Online (Sandbox Code Playgroud)
sample = [['CGG', 'ATT'], ['ATT', 'CCC']]
output = []
for sublist in sample:
if all([len(set(each)) > 1 for each in sublist]):
output.append(sublist)
# List comprehension (doing the same job as the code above)
output2 = [sublist for sublist in sample if
all((len(set(each)) > 1 for each in sublist))]
Run Code Online (Sandbox Code Playgroud)