python中 list 的組合問題

源於最近寫程序頻繁用到了list中元素兩兩組合問題,特地總結以下: list中相鄰元素兩兩組合:html portList = ['a', 'b', 'c', 'd'] for i, p in enumerate(portList): if i == len(portList) - 1: break print(p, portList[i + 1]
相關文章
相關標籤/搜索