I want to convert data into tabulate form. After installing and importing tabulate module I give following command. Where training_accuracy, test_accuracy and training_step are python list. I am getting the error of invalid syntax. I came across the following command that I want to use
`print tabulate([['Alice', 24], ['Bob', 19]], headers=['Name', 'Age'])`
But my training lists are quite long I can not type it again and again. How can I fix this error
`print tabulate([[training_step],[train_accuracy], [test_accuracy]],
headers=['Step', 'Train_accuracy', 'Test_accuracy'])`
Here is my error SyntaxError: invalid syntax