I am a noob, How do I remove quotations and commas from my list? Or how do I "unstring"?
Without showing the dictionary (dic), the code I am using looks like this:
>>>import itertools
>>>list(itertools.product(dic[2], dic[3])
my results looks like this:
[('A', 'D'), ('A', 'E'), ('A', 'F'), ('B', 'D'), ('B', 'E'), ('B', 'F'), ('C', 'D'), ('C', 'E'), ('C', 'F')]
I would like them to look like this:
AD, AE, AF, BD, BE, BF,