python类函数调用的方法是什么

785
2024/5/24 10:10:21
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在 Python 中调用类函数有两种方法:

  1. 实例化类并调用实例方法:
class MyClass:
    def my_function(self):
        print("Hello, world!")

my_instance = MyClass()
my_instance.my_function()
  1. 直接调用类方法(静态方法):
class MyClass:
    @staticmethod
    def my_function():
        print("Hello, world!")

MyClass.my_function()

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: python如何将两个列表一一对应