Posts by Lucas • 36 points
1 post
-
2
votes2
answers50
viewsA: "List" remains null after using Python append
The append() method has no return, it simply does the action of adding a new item to the list. Therefore, when you try to "printar" a return of append, it returns None. You can do it like this to…