how to append data from multiple functions in a list python code example
Example: python append multiple values
list.extend(val1,val2,val3....)
list.extend( [val1,val2],val3,val4,[val5,val6,val7])
#any combination of integers, strings, lists and tuples works