As a Dynamo and Python beginner, I have a question.
I want to subtract every value in a list with every value in the same list, but not with itself.
For example, the list consists of:
15
12
18
implemented this means:
15-12
15-18
12-18.
However, the whole thing should be implemented in such a way that it also works with other list lengths.