- 博客(1)
- 资源 (2)
- 收藏
- 关注
原创 python方法与装饰器
“”" python中,用def创建方法 “”" 创建个方法 def hello(name=“小明”): print(“我的名字是” + name) 下面调用一下 hello() hello(“小王”) “”" 输出: 我的名字是小明 我的名字是小王 “”" 通过输出得到结论:name是可选参数,非必填。不传时用默认值 看看下面操作 fun = hello fun() hello() del hello fun() #hello() “”" 输出: 我的名字是小明 我的名字是小明 我的名字是小明 NameE
2020-05-12 14:30:40 193
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人