I have got data to print. I create list but I can't print it. My list is:
NEW_2 = [['ID', 'FK'], ['1', '1'], ['2', '1'], ['5', '3'], ['6', '2']]
And after print it should be like that:
ID FK
1 1
2 1
5 3
6 2
After all, I have to save that to the file, that will looks like that. Can anyone help?