hypothetical
say i have
for i in range(20):
for j in range(20):
for k in range(20):
How could I != all fo them without writing 20 statements
i !=j !=k doesnt work obviously
(I have to compare 5 words so writing a seperate for each combination would take too long.)