How to run a class in Python with passed arguments?

To execute a class, you can first instantiate it and then call its methods or properties.

For example, suppose there is a class named MyClass with a method called my_method. The class can be executed following these steps:

  1. I’m creating a new object using the class MyClass.
  2. Invoke my_method on my_object.

Here is the complete example code:

class MyClass:
    def my_method(self):
        print("Hello, World!")

# 实例化类
my_object = MyClass()

# 调用类的方法
my_object.my_method()

Running the above code will produce the output “Hello, World!”

bannerAds