Suppose I have two lists.
noun=["Whispers", "Loners", "Gamblers"]
adj=["Shining", " Moaning"]
And I want to print:
The Shining Whispers
The Shining Loners
The Shining Gamblers
The Moaning Whispers
The Moaning Loners
The Moaning Gamblers
What should be my code to do this? These ones are small lists. I have bigger lists. So what code should I write to accomplish this?