I am trying to combine 2 lists and want to form combinations.
a = [\'ibm\',\'dell\'] b = [\'strength\',\'weekness\']
I want to form combina
For a Cartesian product, you want itertools.product() instead of combinations.
A nested for-loop would also work:
for x in a: for y in b: c = a + b print(c)