#编程 的方法论: #面向过程 #面向对象 #函数式编程:编程语言定义的函数+数学语言定义的函数 #Y=2*X+1 def test(x): return 2*x+1 print(test(2))
def foo(n): print(n) def bar(name): print('my name is %s '%name) foo(bar('cat'))
输出是
def han(): print('hello') return han#han()表示return这个函数的返回值 h=han()