Posts by Kaell Andrade • 23 points
2 posts
-
0
votes2
answers99
viewsA: How to save multiple read values to be used later
You can use an array to store values. numeros = [] #cria o array numeros.append(i) #add i ao array
pythonanswered Kaell Andrade 23 -
2
votes1
answer409
viewsQ: What is the "super()" operator for in Javascript?
What is the operator’s functionality super() which lies within the method constructor?