[ create a new paste ] login | about

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

Python, pasted on May 14:
1
2
3
4
5
6
dev 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 1
    dev remove(self, valor):
             ^
SyntaxError: invalid syntax


Create a new paste based on this one


Comments: