Bueno gente ya termine el codigo ya lo hice funcionar, aqui se los dejo para q lo tengan de ejemplito:
Código CODIGO TERMINADO:
Ver original////interface.py////
import claseCliente
import clasePuerta
nom=raw_input("ingrese su nombre: ")
eda=raw_input("ingrese su edad: ")
clien=claseCliente.cliente(nom,eda)
clien.e_irdisco()
////claseCliente.py////
import clasePuerta
class cliente:
def __init__(self,pnomb,pedad):
self.pnomb=pnomb
self.pedad=pedad
def e_irdisco(self):
op=raw_input("Desea ir a Disco?: ")
if op=="si":
obj=clasePuerta.PuertaDisco(self.pedad)
obj.e_asegurar()
//// clasePuerta.py ////
class PuertaDisco:
def __init__(self,maxedad):
self.maxedad=maxedad
def e_asegurar(self):
if int(self.maxedad) < 18 :
print "NO PUEDE PASAR"
else:
print "ADELANTE PASE"
Y gracias a los que se tomaron el tiempo de ayudar: David el Grande y alvlin