最後活躍 1715362413

kristofer's Avatar kristofer 已修改 1715362413. 還原成這個修訂版本

1 file changed, 13 insertions

objectpython.py(檔案已創建)

@@ -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()
上一頁 下一頁