-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula152.py
56 lines (37 loc) · 994 Bytes
/
aula152.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Funções decoradoras e decoradores com métodos
def meu_repr(self):
class_name = self.__class__.__name__
class_dict = self.__dict__
class_repr = f"{class_name}({class_dict})"
return class_repr
def adiciona_repr(cls):
cls.__repr__ = meu_repr
return cls
def meu_planeta(metodo):
def interno(self, *args, **kwargs):
resultado = metodo(self, *args, **kwargs)
if "Terra" in resultado:
return "Você está em casa"
return resultado
return interno
@adiciona_repr
class Time:
def __init__(self, nome):
self.nome = nome
@adiciona_repr
class Planeta:
def __init__(self, nome):
self.nome = nome
@meu_planeta
def falar_nome(self):
return f"O planeta é {self.nome}"
brasil = Time("Brasil")
portugal = Time("Portugal")
terra = Planeta("Terra")
marte = Planeta("Marte")
print(brasil)
print(portugal)
print(terra)
print(marte)
print(terra.falar_nome())
print(marte.falar_nome())