Problem Statement - B04C-2016D
Consider the following definition of class Staff, write a method in python to search and display the content in a pickled file staff.dat, where Staffcode is matching with ‘S0105’.
class Staff: def __init__(self,S,SNM): self.Staffcode=S self.Name=SNM def Show(self): print(self.Staffcode," ", self.Name)
Solution
CSKC| Created: 12-Jan-2019 | Updated: 12-Jan-2019|CBSE12D-2016