You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defappend(self,item):
current=self.tailtemp=Node(item)
current.setNext(temp)
self.tail=temp# this code should be added in order to make the last appended item be the tail of the link.