Posts by Andre Silva • 19 points
1 post
-
0
votes2
answers136
viewsQ: How to transform a list [['a'], ['b']] into a string: ab
quantidade = int(input()) lista = [] lista2 = [] lista3 = [] palavra =() i = 0 while quantidade != len(lista): a = input() lista.append(a) for x in lista: b = x.split() lista2.append(b) for x in…