I'm having problem using super command
class s:
    def __init__(self,a):
        self.a=a
    def show(self):
        print self.a
class t:
    def __init__(self,b):
        self.b=b
    def show2(self):
        print self.b
class w(s):
    def __init__(self,a,b,c):
        super(w,self).__init__()
        self.b=b
        self.c=c
    def show3(self):
        super(w,self).show()
        print self.b
        print self.c
whenever i make an object it gives the following error
x=w(1,2,3)
Traceback (most recent call last):
    File "<pyshell#0>", line 1, in <module>
x=w(1,2,3)
File "C:\Users\GURSAHEJ\Desktop\k.py", line 13, in __init__
super(w,self).__init__()
TypeError: must be type, not classobj
 
     
     
     
    