hi ,
how can i print data as grid view in python, in my case a variable is carrying all the data which is coming from table and i want to print them by using two nested loops.
data_from_table = ['col 1'] + "/t" + ['col 2'] + "/t" + ----------------- ['col n']
here data_from_table is my variable name which has all the columns and rows i need the for loop which should print all the columns and rows which data_from_variable carrying.
thanks