Wasn't able to find a solution to this. I have a bunch of dataframes (subsets of bigger dataframes), like that.
a b c
3,4 good HJJR
and
cod x c utc country
jhh34s 5 HJJR +1 Poland
jhh22d 0 JJHE +1 Poland
And I would simply like to sink them in a single csv file like so:
a b c
3,4 good HJJR
cod x c utc country
jhh34s 5 HJJR +1 Poland
jhh22d 0 JJHE +1 Poland
Is this even possible? It's important to end up with a csv file though. And obviously the dfs have different number of rows and columns. Thank you