课程
/后端开发
/Python
/python进阶
import math
def add(x, y, f):
return f(x) + f(y)
print add(25, 9,math.sqrt)
2017-09-06
源自:python进阶 2-3
正在回答
import math def add(x, y, f): return f(x) + f(y) print add(25, 9, math.sqrt)
def那行不能缩进,return要缩进!python中是通过缩进区分模块的……
666
import mathdef add(x, y, f): return f(x) + f(y)print add(25, 9, math.sqrt)
return这行需要缩进
这格式你缩进了么
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计