1
li1 = [['a','b','c'], ['c','d','e']]
li2 = [['c','a','b'], ['c','e','d']]
c = 1
for i in range(len(l11)):
if (sorted[li1[i]]!=sorted(li2[i]):
c = 0
if(c): k = True
else: k = False
如何在一行中編寫此代碼?另外如何使用zip()來完成這個? 如果li2 = [['a','c','b']]
怎麼辦?使用zip將返回True,但它應該給出一個False。如何在一行中編寫並行循環迭代(列表具有不等長度)
我已經加入其中列出了具有不等的長度的情況。 –