MCPcopy Create free account
hub / github.com/geekcomputers/Python / Display

Method Display

Delete_Linked_List.py:37–42  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

35 return
36
37 def Display(self):
38 temp = self.head
39 while temp:
40 print(temp.data, "->", end=" ")
41 temp = temp.next
42 print("None")
43
44
45if __name__ == "__main__":

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected