Posts by Matheus Velasques • 11 points
1 post
-
0
votes1
answer34
viewsQ: How to create a function that inserts at the bottom of the list (PYTHON ) using the signature : def inserts Fim(self, item)
class Noh: def __init__(self, campo): self.campo = campo self.prox = None def getCampo(self): return self.campo def getProx(self): return self.prox def setCampo(self, nc): self.campo = nc def…
pythonasked Matheus Velasques 11