Given a Singly Linked-List, implement a method to delete the node that contains the same data as the input data. Example: delete(1->2->3->4,3) ==> 1->2->4 class SinglyLinkedList: #constructor def __init__(self): self.head = None #method for setting the head of the Linked List def setHead(self,head): self.head = head #method for deleting a node having a certain dataRead more