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

Method Display

Detect_Remove_loop.py:43–48  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

41 ptr2.next = None
42
43 def Display(self):
44 temp = self.head
45 while temp:
46 print(temp.data, "->", end=" ")
47 temp = temp.next
48 print("None")
49
50
51if __name__ == "__main__":

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected