In the following code C is inherited from A and B so when c.get() is get which classes get method is called can anyone explain this.....
class A:
  def get(self):
    print "In A get"
class B:
  def get(self):
    print "In B get"
class C(A,B):
  def __init__(self):
    print "In c init"
c=C()
c.get()
 
     
     
     
     
    