Posts by Patrick Amaro • 1 point
1 post
-
0
votes3
answers661
viewsA: Doubt - insert element at the end of the list - (Python)
The method .append() creates a space that will be the last position on the list. Ex.: lista = [1, 2] lista.append(3) #resultado: [1, 2, 3]
pythonanswered Patrick Amaro 1