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

Method Display

Insert_operation_on_Linked_List.py:33–38  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls

Tested by

no test coverage detected