加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

第七章第3讲:python函数的关键字参数、默认参数、(收集参数)

发布时间:2020-12-20 13:33:57 所属栏目:Python 来源:网络整理
导读:1.关键字参数 作用:函数参数赋值时,不需要考虑函数代码块中参数的位置 def hello1(greeting,name): print ( " %s %s " % (greeting,name)) def hello2(name,greeting): # print("%s %s" % (name,greeting)) print ( " %s %s " % (greeting,name)) print (h

1.关键字参数

 作用:函数参数赋值时,不需要考虑函数代码块中参数的位置

def hello1(greeting,name):
    print("%s %s" % (greeting,name))
def hello2(name,greeting):
    # print("%s %s" % (name,greeting))
    print("%s %s" % (greeting,name))

print(hello1("hello","world"))
print(hello2("hello","world"))
print(hello2(greeting="hello",name="world"))

2.默认参数

 默认参数适用于在调用函数时未给函数传参的情况下。

def calculateTax(price=3,tax_rage=9):
    talTotal = price * tax_rage
    return talTotal
print(calculateTax(6,2))
print(calculateTax())


结果:
12
27

3.收集参数(*)

 使用范围:不确定参数的个数时使用

# 收集参数
def many_params(*nums):
    #print(nums)
    return nums
print(many_params("hello"))
print(many_params(1,2,3))

def stdentInfo(name,*nums):
    # print(name,nums)
    return name,nums
print(stdentInfo("Leo","Bella",12,"sex"))

结果:
(hello,)
(1,3)
(Leo,(Bella,sex))

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读