I have two different dataframes and they haven't any common column to connect them. Is there any way to create a new dataframe from two different dataframes without any common column? The one of dataframes contains days values.
Example of first dataframe:
 day
 2000-01-01 00:00:00
 2000-01-01 00:01:00
 2000-01-01 00:02:00
Example of the second data frame:
 price
  1
  2
  3
The results of new data frame:
     day              price
 2000-01-01 00:00:00    1
 2000-01-01 00:01:00    2
 2000-01-01 00:02:00    3
 
     
    