函数编程和过程编程的区别
__author__ = "Alex Li" #函数编程 def func1(): """testing1""" print(‘in the func1‘) return 0 #过程编程 def func2(): ‘‘‘testing2‘‘‘ print(‘in the func2‘) x=func1() y=func2() print(‘from func1 return is %s‘ %x) print(‘from func2 return is %s‘ %y)
Posted xgzx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python——函数和过程的区别相关的知识,希望对你有一定的参考价值。
函数编程和过程编程的区别
__author__ = "Alex Li" #函数编程 def func1(): """testing1""" print(‘in the func1‘) return 0 #过程编程 def func2(): ‘‘‘testing2‘‘‘ print(‘in the func2‘) x=func1() y=func2() print(‘from func1 return is %s‘ %x) print(‘from func2 return is %s‘ %y)
以上是关于python——函数和过程的区别的主要内容,如果未能解决你的问题,请参考以下文章