Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c9514fb

Browse files
committed
Criado o primeiro método da classe Pessoa.
1 parent 79a1016 commit c9514fb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

oo/pessoa

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
class Pessoa:
2-
pass
2+
def cumprimentar(self):
3+
return f"Olá, sou a pessoa {id(self)} na memória :)"
4+
5+
if __name__ == "__main__":
6+
p = Pessoa()
7+
print(p.cumprimentar())

0 commit comments

Comments
 (0)