# here is a very simple example of python OOP # normal hello-world print("1 Hello World!") # an OOP version class HelloWorld: def main(self): print("2 Hello World!") obj = HelloWorld() obj.main()