Question: Suppose myList1 and myList2 are two lists. Write Python code that will print all pairs x, y where x is in myList1 and y is

Suppose myList1 and myList2 are two lists. Write Python code that will print all pairs x, y where x is in myList1 and y is in myList2, one per line and separated by a comma. For example when myList1 = ['a', 'b'] andmyList2=[l, 2], a possible output is a, 1 a, 2 b, 1 b, 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
