I want to return two data frames from a function, like this:
def test(): df1 = pd.DataFrame([1,2,3], [\'a\',\'b\',\'c\']) df2 = pd.DataFrame([4,5,6],
How about this:
def test(): df1 = pd.DataFrame([1,2,3], ['a','b','c']) df2 = pd.DataFrame([4,5,6], ['d','e','f']) return df1, df2 a, b = test() display(a, b)
This prints out:
0 a 1 b 2 c 3 0 d 4 e 5 f 6