Última atividade 1718111211

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

1 file changed, 10 insertions

PyObjects.py(arquivo criado)

@@ -0,0 +1,10 @@
1 + print("1 Hello World!")
2 +
3 + class HelloWorld:
4 + def main(self):
5 + print("2 Hello World!")
6 +
7 + obj = HelloWorld()
8 + obj.main()
9 +
10 + # What do you MEAN Python is an Object Oriented Language?
Próximo Anterior