We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 554bed2 commit b6923d2Copy full SHA for b6923d2
1 file changed
oo/pessoa.py
@@ -1,3 +1,8 @@
1
# Criando a Classe Pessoa
2
class Pessoa:
3
- pass
+ def cumprimentar(self):
4
+ return 'Olá'
5
+
6
+if __name__ == '__main__':
7
+ p = Pessoa()
8
+ print(p.cumprimentar())
0 commit comments