get list in matrix format python code example
Example 1: change list to int in python
test_list = list(map(int,test_list))
Example 2: how to print 2 list in python as table
a = ['a', 'b', 'c']
b = ['1', '0', '0']
res = "\n".join("{} {}".format(x, y) for x, y in zip(a, b))