This may be a very simple solution that I am missing but I want to combine two dataframes, by adding each individual row to every row in another dataframe. Please see the example below.
df:
      name           
 0     ben
 1     john
 2     tom
df1:
      colour
 0     red
 1     blue
result:
         name   colour
     0    ben    red
     1    ben    blue
     2    john   red
     3    john   blue
     4    tom    red
     5    tom    blue
    
     
Seems like it could be a simple solution so apologies. Thanks in advance.
 
     
    