Hi everyone,
I want following task to be done in Python without importing any modules.
My Code consists
Two List
---------
list1=['aun','2ab','acd','3aa']
list2=['ca3','ba2','dca','aa3']
Function
---------
Where it will:
- Generates 2 items combination from list1
- Generates 2 items combination from list2
- Generates 2 items combination from list1 and list2
I don't need to print these all combinations of two items
But I want to pass all these 2 items combinations to further task and show results
analysize R.. **ca3** .... and ... **2ab** // Combinations of two items from list1 and list2
Print analysize