B04C
CBSE12A-2018
Problem Statement - B04C
Considering the following definition of class MULTIPLEX, write a method in python to search and display all the content in a pickled file CINEMA.DAT, where MTYPE is matching with the value ‘Comedy’.
class MULTIPLEX: def __init__(self,mno,mname,mtype): self.MNO = mno self.MNAME = mname self.MTYPE = mtype def Show(self): print self.MNO:"*",self.MNAME,"$",self.MTYPE
Solution
CSKC| Created: 9-Jan-2019 | Updated: 10-Jan-2019|CBSE12A-2018