最後活躍 1718111211

修訂 08c0bd4b3c458ef07b3ad224bdebe0185b8e17f1

PyObjects.py 原始檔案
1print("1 Hello World!")
2
3class HelloWorld:
4 def main(self):
5 print("2 Hello World!")
6
7obj = HelloWorld()
8obj.main()
9
10# What do you MEAN Python is an Object Oriented Language?