最佳答案
通过使用 Python,我希望比较列表中每一个可能的对。
假设我有
my_list = [1,2,3,4]
I'd like to do an operation (let's call it foo) on every combination of 2 elements from the list.
最终结果应该与
foo(1,1)
foo(1,2)
...
foo(4,3)
foo(4,4)
我的第一个想法是手动遍历列表两次,但这看起来并不十分简单。