Última atividade 1715362413

kristofer's Avatar kristofer revisou este gist 1715362413. Ir para a revisão

1 file changed, 13 insertions

objectpython.py(arquivo criado)

@@ -0,0 +1,13 @@
1 + # here is a very simple example of python OOP
2 +
3 + # normal hello-world
4 + print("1 Hello World!")
5 +
6 + # an OOP version
7 +
8 + class HelloWorld:
9 + def main(self):
10 + print("2 Hello World!")
11 +
12 + obj = HelloWorld()
13 + obj.main()
Próximo Anterior