I have a variable as follows:
symbols = ['KEL','BYCO']
I want a function that would give combination of these symbols as output as shown below
['KEL'],['BYCO'] and ['KEL','BYCO']
Could someone recommend any library/function through which I can achieve such combinations given a variable which contains n number of strings in it.