I have a list of tuples (a) that i want to change to list of lists (b).
a = [('ad','as'),('bs','bt'),('cs','cr')]
b = [['ad','as'],['bs','bt'],['cs','cr']]
I tried the code below but it does not change anything. Am i missing something?
b = []
for element in a:
b.append(list(element))