I'm trying get some data using github API's and print in a csv file. I'm get output something like below
4
3
2
1
user-1
user-2
user-3
user-4
I'm trying to achieve that the data should be displayed column-wise, something like this.
4 user-4
3 user-3
2 user-2
1 user-1
And the data will vary every time and I may need to add some more columns similar to this.
Please someone help to achieve this.
0 Answers