What's wrong with this code? The compiler points to error in line 8 ...
class Pai(object):
Nome='Carlos'
Sobrenome='Maria'
Residencia='Rio de Janeiro'
class Filha(Pai):
Nome='Luciana'
def __init__(self, humor):
self.humor = humor
f = Filha('alegre')
print(f.Nome)
print(Nome.Pai)
print(f.Sobrenome)
print(f.Residencia)
print(f.olho)