Posts by Guilherme Dias de Souza Matuna • 21 points
1 post
-
2
votes1
answer410
viewsQ: Why can’t I make an "append()" on a list formed from a "Join()"?
I started creating a list in Python leaving each element below the other through the join(). Then I tried to add an element to the list through append(): abc = '\n'.join(['a','b', 'c'])…