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

Method Display

Reverse_list_in_groups.py:35–40  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected