I am creating an inheritance hierarchy of logic gates, i am not getting an output for my code below

后端 未结 0 2013
我寻月下人不归
我寻月下人不归 2021-02-20 04:08
class LogicGate:
    def __init__(self, n):
        self.label = n
        self.output = None

    def getlabel(self):
        return self.label
    
    def getoutput(s         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题