Q.1
Exam - CBSE12A-2018/B04C/3
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