I know there are several questions like this, but they dont describe exactly what I want. I need it for a task about a password generator. All itertools modules I know work like:
list1 = [1, 2]
list2 = [3, 4]
it would print out: (1, 3)(1, 4)(2, 3)(2, 4)
But I also need (3, 1)(4, 1)(3, 2)(4, 2)
´
So basically (1, 0)
and (0, 1)
shouldnt be seen as the same combination.
Thanks in advance :)