How would I go about converting a list of list of integers to a single string in Python. The numbers in the sublist would be separated by a space and the sublists by a comma.
Like this:
input = [[1,2,3],[4,5,6],[7,8,9]]
output = '1 2 3, 4 5 6, 7 8 9'