在 Python 中调用类函数有两种方法:
class MyClass:
def my_function(self):
print("Hello, world!")
my_instance = MyClass()
my_instance.my_function()
class MyClass:
@staticmethod
def my_function():
print("Hello, world!")
MyClass.my_function()
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python如何将两个列表一一对应