码迷,mamicode.com
首页 > 编程语言 > 详细

python的函数

时间:2018-07-20 17:33:29      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:div   顺序   python   hid   col   The   映射   inxi   一般来说   

以下内容参考了辛星教程网的内容:http://www.xinxingjiaocheng.com/online/item/7/88#

1.所谓函数其实还是一种映射,特定的输入对应着特定的输出。如果函数写return,则默认返回None。

2.如果函数的返回值不止一个,一般来说接收返回值的时候也应该相应的写上多个。比如返回值有三个,则接收变量应该定义成三个。如果你定义成一个,则会返回一个返回值元组:

技术分享图片
def f():
    return 1,2,3
r=f()
print(r)
#the running result:(1, 2, 3)
View Code

3.有默认值的参数,个别参数设置了默认值的话,会减少传参的复杂性,需要注意的一点是,带有默认值的参数需要放在参数列表的后面:

技术分享图片
def f(a,b=3,c=6):
    return a*b*c
r=f(2)
print(r)
#the running result:36
View Code

4.参数太多,有时候传的时候记不住对应顺序,那就在写参数的时候写上对应的名字:

技术分享图片
def f(name,age):
    print(the age is :,age)
    print(your name is :,name)
f(age=22,name=刘德华)
#the running result:the age is : 22
#your name is : 刘德华
View Code

 

python的函数

标签:div   顺序   python   hid   col   The   映射   inxi   一般来说   

原文地址:https://www.cnblogs.com/yibeimingyue/p/9342532.html

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