Assuming I have the following list:
ListofLists = [2, 3, 4, 5, 6, 7], [8, 9, 10, 11, 12, 13] 
I want to add the list of lists to the body of a email, something like that:
body = "Here are the informations" + ListofLists 
I would like to seperate the two lists and print the lists each in a seperate line, so it looks like a table, how could I do that?
What I want as an Output is the following:
Number 1  Number 2  Number 3  Number 4  Number 5  
   2         3         4         5         6
   8         9        10        11        11
 
     
    