码迷,mamicode.com
首页 > 其他好文 > 详细

11、函数与函数式编程

时间:2018-07-20 23:42:17      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:testing   返回   def   highlight   UNC   int   The   没有   过程   

1、介绍

2、过程和函数

过程(没有返回值的函数)

def func2():
    ‘‘‘test2‘‘‘
print(‘in the funk‘)

 

函数

def func1():
    ‘‘‘testing function‘‘‘
    print(‘in the func1‘)
    return 0

 

调用:

x=func1()
y=func2()#y的值时None

 

11、函数与函数式编程

标签:testing   返回   def   highlight   UNC   int   The   没有   过程   

原文地址:https://www.cnblogs.com/LittleSpring/p/9344579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!