python3 函数(function)与方法(method)区别

0. 总结:
(1)方法需要对象,函数不需要对象。所以有对象的是方法,无对象的是函数。
(2)一句话式总结:
与类和实例无绑定关系的function都属于函数(function);
与类和实例有绑定关系的function都属于方法(method)。

1. 定义
函数function : A series of statements which returns some value to a caller. It can also be passed zero or more arguments which may be used in the execution of the body.仅是数学公式
方法method:A function which is defined inside a class body. If called as an attribute of an instance of that class, the method will get the instance object as its first argument (which is usually called self).基于对象进行的处理

2. 方法
方法需要配合对象来使用,不能单独使用。如:

list = [1, 2, 3, 4]
list.pop()  # pop()是list的一个方法
print(list)

3. class外部定义的可执行函数——函数
分类:内置函数、匿名函数、递归函数
举例说明:

def quote():
    print("abc")  # A 内置函数,由“函数名(参数)”进行调用
    
quote()  # B 自定义函数,用def来进行函数的自定义,调用同内置函数

abc = lambda x, y: x * y
print(abc(2, 3))  # C 匿名函数,lambda是关键字,可多个参数,不需要函数名

def hey(n):  
    if n==1:
        return 1
    return n 
  • 4
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值