python——函数和过程的区别

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——函数和过程的区别的主要内容,如果未能解决你的问题,请参考以下文章

python:关于函数的初认识

盘点Python常用的模块和包

python异常和错误的区别

python使用上下文对代码片段进行计时,非装饰器

过程,模块,函数,类,他们有啥不同?

python内置方法