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

python函数的几种参数类型

时间:2018-06-03 01:00:31      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:name   def   class   函数   位置   int   func   IV   nbsp   

##位置参数
def func1(x,y):
    print("{} + {} = {}".format(x,y,x+y))



##默认参数
def func2(x,y=5):
    print("{} + {} = {}".format(x,y,x+y))



##可变参数
def func3(*x):
    print(len(x),x[0])


##
def func4(name,age=32,**x):
    print(name,age,x)

func4(s,33,c=100,y=99,x=101)

 

python函数的几种参数类型

标签:name   def   class   函数   位置   int   func   IV   nbsp   

原文地址:https://www.cnblogs.com/ssxsy/p/9127526.html

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