在 python 中调用函数的最简单方法是什么?我们在哪里使用 classes,我们在哪里使用方法,我们在哪里使用 class 中的方法
What is the simplest way to call a function in python? Where do we use classes and where do we use methods and where do we use methods within a class
这是我的代码。调用示例函数的最简单方法是什么?
class Sample():
def example(x, y):
z = x + y
print(z)
return z
如果能对它进行很好的描述,我将不胜感激。
可以直接调用:
Sample.example(1, 2)
这是我的代码。调用示例函数的最简单方法是什么?
class Sample():
def example(x, y):
z = x + y
print(z)
return z
如果能对它进行很好的描述,我将不胜感激。
可以直接调用:
Sample.example(1, 2)