I have two dataframes ( 'Correct answer' and 'Value' ). The Correct Answer has rows 1,2,3...10 and the Values has rows (1,2,3).
I essentially want to create a new dataframe with values ( [1,1] [1,2], [1,3], [2,1], [2,2] ...[Correctanswer(i), Value(j)].
Is there any way to do this without using a for loop?