I have a list of users:
users = [1,2,3,4,5]
I want to compute a relationship between them:
score = compatibility( user[0], user[1] )
How do I loop over users so that a relationship between users are computed only once?
|
2
|
|
|
|
|
|
If you care only about ordered relationship, you could do the following:
if you need all combinations you should use
|
||||||||||
|
|
|
use for loops, or list comprehension. here is for loop example:
list comprehension:
|
||||
|
|
|
Something like the following should work (not tested):
|
||
|
|
|
|
I managed to do what I wanted with this:
|
||
|
|
|
|
If you mean that:
you could use:
this will also calculate the compatibility between the same users (maybe applicable) |
||
|
|
|
|
Use itertools.permuations instead of itertools.combinations if compatibility(a,b) doesn't mean the same thing as compatibility(b,a). |
||
|
|