[ create a new paste ] login | about

Link: http://codepad.org/mPxC4y9t    [ raw code | output | fork ]

Python, pasted on May 14:
1
2
3
4
5
6
def remove(self, valor):
if self.head.data == valor:
self.head = self.head.nextItem
else:
before = none
navegar = self.head


Output:
1
2
3
4
  Line 2
    if self.head.data == valor:
     ^
IndentationError: expected an indented block


Create a new paste based on this one


Comments: