I want to select few columns from a DF.
Between the columns I need to add different spaces as end user wants fixed width file (but not sure about the few columns in future). So some fixed width space needs to be added between. I need to save this file as text file without header as FixedWidth file.
My output string should look like below
aaa bbb ccc ddd
where aaa, bbb... are columns values selected from DF and with 3 spaces added in between.
Can anyone please help here