1 Star 0 Fork 0

闲云野鹤/python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
return.py 583 Bytes
一键复制 编辑 原始数据 按行查看 历史
tian 提交于 2015-07-17 23:14 . add the return demo
#函数作为返回值
#高阶函数除了可以接受函数作为参数,还可以把函数作为返回值
def cal_sum(*args):
ax=0
for n in args:
ax=ax+n
return ax
def lazy_sum(*args):
def sum():
ax=0
for n in args:
ax=ax+n
return ax
return sum
f=lazy_sum(1,3,5,5,7,8)
print(f)#返回一个求和函数
##闭包
def count(*args):
fs=[]
for i in args:
def f():
return i*i
fs.append(f)
return fs
f1=count()
print(f1)
class stu():
def s():
return 23;
def __init__():
print('this is init')
f=stu.s();
#print(f)
import os
name =os.name;
print(name)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xianyunyehe/python.git
git@gitee.com:xianyunyehe/python.git
xianyunyehe
python
python
master

搜索帮助